I would like to disable the Alt+Tab (or all of the Alt+ combinations) on my Ubuntu 12.04 LTS. I tried to disable at System preferences -> Keyboard shortcuts, but this method doesn't seem to be working. Later I tried to activate an own shortcut for Alt+Tab (like an overwriting attempt), without any success...
Is there a way to disable this with or without compiz?
gsettings set org.gnome.desktop.wm.keybindings switch-applications "['<Super>Tab']"
andgsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "['<Shift><Super>Tab']"
(tested on Ubuntu 17.10). The default settings bind bothAlt
andSuper
, these commands remove the bindings with theAlt
key and leave only those withSuper
. – Arch Stanton Apr 26 '18 at 21:31