Updated bootstrap to work with gnome desktop as well

This commit is contained in:
Eric Renfro 2020-11-20 17:39:03 -05:00
parent 8812cdde6c
commit d5c1cc613a
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,9 @@ if [[ -f /etc/os-release ]]; then
if [[ "$ID" == "linuxmint" ]]; then
gsettings set org.cinnamon.desktop.keybindings.wm activate-window-menu '[]'
gsettings set org.cinnamon.desktop.keybindings.wm switch-group '[]'
elif [[ "$ID" == "ubuntu" ]]; then
gsettings set org.gnome.desktop.wm.keybindings activate-window-menu '[]'
gsettings set org.gnome.desktop.wm.keybindings switch-group '[]'
fi
fi