diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | gtk-2.0/gtkfilechooser.ini | 11 | ||||
-rw-r--r-- | gtk-2.0/gtkrc | 14 | ||||
-rw-r--r-- | gtk-3.0/bookmarks | 5 | ||||
-rw-r--r-- | gtk-3.0/settings.ini | 15 | ||||
-rwxr-xr-x | zsh/zscripts/zplug.zsh | 11 |
6 files changed, 55 insertions, 4 deletions
@@ -4,6 +4,8 @@ !ansible !dunst !git +!gtk-2.0 +!gtk-3.0 !launch !lf !mimewiz @@ -17,5 +19,4 @@ nvim/lazy-lock.json nvim/.netrwhist zsh/.zcompdump -gtk* htop diff --git a/gtk-2.0/gtkfilechooser.ini b/gtk-2.0/gtkfilechooser.ini new file mode 100644 index 0000000..a26cb02 --- /dev/null +++ b/gtk-2.0/gtkfilechooser.ini @@ -0,0 +1,11 @@ +[Filechooser Settings] +LocationMode=path-bar +ShowHidden=false +ShowSizeColumn=true +GeometryX=0 +GeometryY=0 +GeometryWidth=1368 +GeometryHeight=980 +SortColumn=name +SortOrder=ascending +StartupMode=recent diff --git a/gtk-2.0/gtkrc b/gtk-2.0/gtkrc new file mode 100644 index 0000000..952ce9b --- /dev/null +++ b/gtk-2.0/gtkrc @@ -0,0 +1,14 @@ +gtk-theme-name="Mint-Y-Dark-Aqua" +gtk-icon-theme-name="Mint-Y-Aqua" +gtk-font-name="Sans 10" +gtk-cursor-theme-name="Adwaita" +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle="hintfull" diff --git a/gtk-3.0/bookmarks b/gtk-3.0/bookmarks new file mode 100644 index 0000000..430ed2f --- /dev/null +++ b/gtk-3.0/bookmarks @@ -0,0 +1,5 @@ +file:///home/timmy/dls dls +file:///home/timmy/docs docs +file:///home/timmy/docs/src/sites sites +file:///home/timmy/docs/src/scripts scripts +file:///home/timmy/docs/src/programs programs diff --git a/gtk-3.0/settings.ini b/gtk-3.0/settings.ini new file mode 100644 index 0000000..96d1cce --- /dev/null +++ b/gtk-3.0/settings.ini @@ -0,0 +1,15 @@ +[Settings] +gtk-theme-name=Mint-Y-Dark-Aqua +gtk-icon-theme-name=Mint-Y-Aqua +gtk-font-name=Sans 10 +gtk-cursor-theme-name=Adwaita +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull diff --git a/zsh/zscripts/zplug.zsh b/zsh/zscripts/zplug.zsh index b3eff09..27dc70f 100755 --- a/zsh/zscripts/zplug.zsh +++ b/zsh/zscripts/zplug.zsh @@ -1,8 +1,9 @@ #!/usr/bin/env zsh -local zplugs="${ZDOTDIR:-~/.}${ZDOTDIR:+/}zplugs" # Declare all variables using `local` to keep them away from the interactive shell -local zplugins="${ZPLUGINSDIR:-/usr/local/share/zsh/zplugins}" # TODO set default dir if zplugnoroot -[[ $EUID != 0 ]] && [ -z "$ZPLUGNOROOT" ] && local sudo=${SUDO-sudo} +local home=~ +local zplugs="${ZDOTDIR:-$home/.}${ZDOTDIR:+/}zplugs" # Declare all variables using `local` to keep them away from the interactive shell +local zplugins="${ZPLUGINSDIR:-$home/.local/share/zsh/zplugins}" +#[[ $EUID != 0 ]] && [ -z "$ZPLUGNOROOT" ] && local sudo=${SUDO-sudo} function __zplugInstall() { touch "$zplugs" @@ -127,5 +128,9 @@ function zplug() { function zplugInitialize() { local plugin + if ! [ -d "$zplugins" ] && [ -f "$zplugs" ]; then + echo "zplug installing plugins..." + __zplugInstall 0 # Put in some value since there is a shift + fi for plugin in "$zplugins"/*/*.zsh; do source "$plugin"; done 2>/dev/null } |