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
| #!/usr/bin/env bash | |
| install_shortcuts() { | |
| echo "Installing GNOME workspace & shortcut setup..." | |
| for i in {1..9}; do | |
| gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-$i "['<Super>$i']" | |
| gsettings set org.gnome.desktop.wm.keybindings move-to-workspace-$i "['<Super><Shift>$i']" | |
| gsettings set org.gnome.shell.keybindings switch-to-application-$i "['<Super><Alt>$i']" | |
| done |