- Added early support for app switching on Gnome

This commit is contained in:
Ben Reaves
2020-02-26 18:15:46 -06:00
parent c6292ee34a
commit c4db31bdf0
4 changed files with 67 additions and 54 deletions

10
system-config/system_hotkeys.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ "$1" = "term" ];
then
gsettings set org.gnome.desktop.wm.keybindings switch-applications "['<Shift><Control>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "['']"
else
gsettings set org.gnome.desktop.wm.keybindings switch-applications "['<Control>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "['<Shift><Control>Tab']"
fi