diff options
-rwxr-xr-x | bin/gnome-set-config | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/gnome-set-config b/bin/gnome-set-config index 07ef21e..291d1fd 100755 --- a/bin/gnome-set-config +++ b/bin/gnome-set-config @@ -8,6 +8,9 @@ NUM_WORKSPACES=9 gsettings set org.gnome.mutter dynamic-workspaces false gsettings set org.gnome.desktop.wm.preferences num-workspaces $NUM_WORKSPACES +# Disable the default <Super>p. I don't use it, and it's disruptive when I accidentally trigger it. +gsettings set org.gnome.mutter.keybindings switch-monitor '[]' + for i in $(seq 1 $NUM_WORKSPACES); do gsettings set org.gnome.shell.keybindings switch-to-application-$i '[]' gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-$i "['<Super>$i']" |