Skip to content

Instantly share code, notes, and snippets.

@parasquid
Last active June 12, 2020 02:57
Show Gist options
  • Save parasquid/b0652d24f993fa06c865 to your computer and use it in GitHub Desktop.
Save parasquid/b0652d24f993fa06c865 to your computer and use it in GitHub Desktop.
Gnome 3: How to Alt Tab windows on current workspace only + High DPI setup + keyboard repeat rate
# settings from https://superuser.com/questions/394376/how-to-prevent-gnome-shells-alttab-from-grouping-windows-from-similar-apps/860001
gsettings set org.gnome.desktop.wm.keybindings switch-applications "['<Super>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-windows "['<Alt>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "['<Shift><Super>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-windows-backward "['<Shift><Alt>Tab']"
gsettings set org.gnome.shell.app-switcher current-workspace-only true
gsettings set org.gnome.desktop.peripherals.keyboard delay 320
gsettings set org.gnome.desktop.peripherals.keyboard repeat-interval 25
gsettings set org.gnome.desktop.interface scaling-factor 2
gsettings set org.gnome.desktop.peripherals.touchpad click-method 'fingers'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment