29

I can't find where this shortcut is defined. How can I disable it?

Zanna
  • 70,465
pe4enko
  • 393

3 Answers3

34

This is what worked for me

  • Open a terminal and run dconf-editor
  • Navigate to org > gnome > desktop > wm > keybindings
  • Find ['<Super>Above_Tab', '<Alt>Above_Tab']
  • Set it to ['disabled']
  • This should free up that binding for you to use elsewhere.

(ps: I use alt-grave to switch back one application like you can in mac - works well for me and the setting for that is in dconf-editor under the same place


For those of you that don't know what a grave is, it is the key right above the tab key and to the left of the number 1 key it looks like this (`). It's also known as a backtick and is used in mark down and python as a comment like this

`code here`
```or in some markdown dialects, code here``` 
Zanna
  • 70,465
codenamejames
  • 391
  • 3
  • 7
  • 1
    What is the actual rule called in here>? As I can't find it linked to the commands you are saying – Jamie Hutber Feb 13 '17 at 11:18
  • Anyone managed to sort it out on Ubuntu 16.04? Worked fine for me on 14.04 and also migrated to 16.04 on upgrade, however stopped working on a fresh install – SyBer Feb 14 '17 at 18:36
  • Did a cross-question at http://superuser.com/questions/1178633/how-to-disable-alt-tilda-on-ubuntu-16-04, if someone wants to earn points. – SyBer Feb 14 '17 at 18:37
  • 1
    Wish I could upvote my own post.... I use this every time I install Linux – codenamejames Aug 11 '17 at 07:16
  • 1
    see this answer for ubuntu 18.04 – adl Jun 19 '19 at 07:26
  • Thank you so much for this. This fixes a keyboard shortcut conflict with IntelliJ IDEA, as the "VCS Operations Popup" default for GNOME is also Alt+`/ Alt-Backtick – trafalmadorian Sep 18 '19 at 02:07
31
  • Install the compizconfig-settings-manager Install compizconfig-settings-manager package
  • The setting can be found in Desktop, Ubuntu Unity Plugin, Switcher
  • Change Key to flip through windows in the switcher from disabled to something else.

And the reason you can not find it: disabled means it uses alt+` so it is impossible to find if you did not already know where it is used for ;)

Rinzwind
  • 299,756
  • This isn't working for me with Ubuntu 12.04. I gave it another key. I've ticked the "Enable Ubuntu Unity Plugin". I've rebooted. But it doesn't respond to the new key and Alt+~ still functions. – Tergiver Dec 27 '13 at 19:52
  • 1
    This does work for me in 14.04 to stop the default window switcher from using alt-grave. But in order to then use alt-grave for something else (the static window switcher) I also had to use @codenamejames' answer below. Thanks! – Jonathan Hartley Nov 18 '15 at 20:25
  • (in fact, after using both this answer AND @codenamejames answer, I still couldn't get alt-grave to work as static-switcher prev window. It was still bound to some 'unity switcher prev window on this workspace' action. So I did this answer over again, for every action on the unity plugin switcher's tab's list of keybinds. That seems to have nuked it.) – Jonathan Hartley Nov 18 '15 at 21:29
  • Run compizconfig-settings-manager with ccsm. – davidA Dec 13 '16 at 05:04
  • Caution: in my settings, this wasn't disabled, but rather, was assigned to a key that was already bound to something else. – sircolinton Mar 14 '18 at 03:32
5

Or as a one-liner:

gsettings set org.gnome.desktop.wm.keybindings switch-group "[]"
JBSnorro
  • 221