This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use pacman with sudo only when needed | |
pacman () | |
{ | |
case $1 in | |
-S | -D | -S[^sih]* | -R* | -U*) | |
/usr/bin/sudo /usr/bin/pacman "$@";; | |
*) /usr/bin/pacman "$@";; | |
esac} | |
# standard things |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Force alt + tab to switch only on current workspace in GNOME shell | |
gsettings set org.gnome.shell.app-switcher current-workspace-only true | |
# Use 5 fixed workspaces instead of dynamic mode | |
gsettings set org.gnome.mutter dynamic-workspaces false | |
gsettings set org.gnome.desktop.wm.preferences num-workspaces 5 | |
# Use alt for pinned apps | |
gsettings set org.gnome.shell.keybindings switch-to-application-1 "['<Alt>1']" | |
gsettings set org.gnome.shell.keybindings switch-to-application-2 "['<Alt>2']" |
OlderNewer