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 6edb7bf6f3
commit d7583d6943
Signed by: psi-jack
GPG Key ID: 14977F3A50D9A5BF
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