Add gnome config scripts

This commit is contained in:
Arti Zirk 2020-03-09 16:05:17 +02:00
parent 60c7c0f229
commit 8b149d8270
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#!/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']"

View File

@ -0,0 +1,4 @@
#!/bin/sh
# disables headerbar on gnome-terminal 3.32 and newer
# you need to close all open terminal windows before this takes effect
dconf write /org/gnome/terminal/legacy/headerbar '@mb false'