mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-01 00:30:58 +02:00
8 lines
517 B
Bash
Executable File
8 lines
517 B
Bash
Executable File
#!/bin/sh
|
|
# https://gist.github.com/artizirk/c895b6c1c7d75dc227f90bd9950aea6e
|
|
# Those options are also available in the settings app but aint nobody got time for that
|
|
dconf write /org/gnome/desktop/wm/keybindings/switch-applications "['<Super>Tab']"
|
|
dconf write /org/gnome/desktop/wm/keybindings/switch-applications-backward "['<Shift><Super>Tab']"
|
|
dconf write /org/gnome/desktop/wm/keybindings/switch-windows "['<Alt>Tab']"
|
|
dconf write /org/gnome/desktop/wm/keybindings/switch-windows-backward "['<Shift><Alt>Tab']"
|