Created
September 28, 2019 22:06
-
-
Save khlj/7f6780e0ca62ebe185250099f2ab419e to your computer and use it in GitHub Desktop.
Gnome 3 Custom config
This file contains 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
# add extra short cut keys for workspace navigation | |
dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Alt>5']" | |
dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-6 "['<Alt>6']" | |
dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-7 "['<Alt>7']" | |
dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-8 "['<Alt>8']" | |
dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-9 "['<Alt>9']" | |
# shortcut for moving windows to designated workspace | |
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-5 "['<Shift><Alt>5']" | |
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-6 "['<Shift><Alt>6']" | |
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-7 "['<Shift><Alt>7']" | |
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-8 "['<Shift><Alt>8']" | |
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-9 "['<Shift><Alt>9']" | |
# limit alt+tab for only current workspace | |
gsettings set org.gnome.shell.app-switcher current-workspace-only true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment