Files
kinto/system-config/system_hotkeys.sh
2020-02-26 18:15:46 -06:00

11 lines
417 B
Bash
Executable File

#!/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