M install.sh => install.sh +0 -4
@@ 71,8 71,4 @@ curl -SsfLo ~/.zsh/completions/_docker-compose https://raw.githubusercontent.com
mkdir -p ~/.local/share/xfce4/terminal/colorschemes
curl -SsfLo ~/.local/share/xfce4/terminal/colorschemes/gruvbox-dark.theme 'https://raw.githubusercontent.com/morhetz/gruvbox-contrib/master/xfce4-terminal/gruvbox-dark.theme'
-cd "$DOTFILES_DIR"
-sh ./install_dpmsconf.sh
-sh ./applymime.sh
-
exit 0
A overlay/.config/albert/albert.conf => overlay/.config/albert/albert.conf +54 -0
@@ 0,0 1,54 @@
+[General]
+hotkey=Alt+Space
+showTray=false
+telemetry=true
+terminal=st -e
+
+[org.albert.extension.applications]
+enabled=true
+fuzzy=true
+
+[org.albert.extension.calculator]
+enabled=true
+
+[org.albert.extension.files]
+enabled=false
+fuzzy=true
+indexhidden=true
+
+[org.albert.extension.firefoxbookmarks]
+enabled=false
+fuzzy=true
+openWithFirefox=true
+profile=Profile0
+
+[org.albert.extension.hashgenerator]
+enabled=false
+
+[org.albert.extension.mpris]
+enabled=false
+
+[org.albert.extension.python]
+enabled=false
+enabled_modules=@Invalid()
+
+[org.albert.extension.system]
+enabled=false
+
+[org.albert.extension.terminal]
+enabled=true
+
+[org.albert.extension.websearch]
+enabled=false
+
+[org.albert.frontend.widgetboxmodel]
+alwaysOnTop=true
+clearOnHide=false
+displayIcons=true
+displayScrollbar=false
+displayShadow=false
+hideOnClose=false
+hideOnFocusLoss=false
+itemCount=5
+showCentered=true
+theme=Arc Grey
M overlay/.xprofile => overlay/.xprofile +1 -1
@@ 1,4 1,4 @@
-export XDG_CURRENT_DESKTOP=GNOME
+export XDG_CURRENT_DESKTOP=GNOME:MATE
if [ -x "$(which xinput)" ] ; then
if [ -e /dev/wsmouse ] ; then
xinput set-prop /dev/wsmouse "WS Pointer Wheel Emulation" 1
A scripts/apply_caja_config.sh => scripts/apply_caja_config.sh +29 -0
@@ 0,0 1,29 @@
+#!/bin/sh
+
+# set caja settings
+
+gsettings set org.mate.caja.preferences confirm-move-to-trash false
+gsettings set org.mate.caja.preferences default-folder-viewer 'list-view'
+gsettings set org.mate.caja.preferences show-image-thumbnails 'local-only'
+gsettings set org.mate.caja.preferences tabs-open-position 'after-current-tab'
+gsettings set org.mate.caja.preferences show-icon-text 'local-only'
+gsettings set org.mate.caja.preferences date-format 'locale'
+gsettings set org.mate.caja.preferences mouse-use-extra-buttons true
+gsettings set org.mate.caja.preferences always-use-location-entry false
+gsettings set org.mate.caja.preferences always-use-browser true
+gsettings set org.mate.caja.preferences side-pane-background-set false
+gsettings set org.mate.caja.preferences executable-text-activation 'ask'
+gsettings set org.mate.caja.preferences sort-directories-first true
+gsettings set org.mate.caja.preferences preview-sound 'local-only'
+gsettings set org.mate.caja.preferences mouse-forward-button 9
+gsettings set org.mate.caja.preferences show-directory-item-counts 'local-only'
+gsettings set org.mate.caja.preferences show-notifications false
+gsettings set org.mate.caja.preferences use-iec-units true
+gsettings set org.mate.caja.preferences enable-delete false
+gsettings set org.mate.caja.preferences install-mime-activation true
+gsettings set org.mate.caja.preferences confirm-trash true
+gsettings set org.mate.caja.preferences show-advanced-permissions false
+gsettings set org.mate.caja.preferences click-policy 'double'
+gsettings set org.mate.caja.preferences mouse-back-button 8
+gsettings set org.mate.caja.preferences default-sort-in-reverse-order false
+gsettings set org.mate.caja.preferences default-sort-order 'name'
R applymime.sh => scripts/applymime.sh +1 -1
@@ 21,4 21,4 @@ while read -r line ; do
if lsdesktopf | grep -i "$desktop" > /dev/null 2>&1 ; then
xdg-mime default "$desktop" "$mimetype"
fi
-done < "./mimeassoc.tsv"
+done < "../mimeassoc.tsv"
R install_dpmsconf.sh => scripts/install_dpmsconf.sh +0 -0