How to set Super/Windows key to Show All Applications menu in GNOME DE?

I am on Antergos with GNOME 3.24.3.

Pressing the Super key (Windows key) opens this Activities menu/view that I don’t want to use:

Activities menu

Pressing the Super + A keys opens the menu that I want to open with just the Super key:

enter image description here

I have attempted to set this myself by using dconf-editor to set the Activities menu to the Alt_R key (a key I never use) and the Show All Applications menu to the Super key.

(The keybinding for the Activities menu is under /org/gnome/mutter/overlay-key. The keybinding for the Show All Applications menu is under /org/gnome/shell/keybindings/toggle-application-view.)

However, pressing Super or Super + A does nothing now.

How can I make this all work?

Asked By: RobotUnderscore

||

I configured those keys directly through Settings -> Devices -> Keyboard on Ubuntu 17.10. Under “System” section you have “Show the overview” which you can disable (by pressing backspace). And for “Show all applications” you can configure then Super.

Answered By: Mitar

For Ubuntu 22.04 with GNOME 42, install following extension:

https://extensions.gnome.org/extension/5040/start-overlay-in-application-view/

For Ubuntu 17.1 or 20.04, install following extension:

https://extensions.gnome.org/extension/1198/start-overlay-in-application-view/

Answered By: Rick Wolff

Not sure why you couldn’t get it working with those dconf settings. This works for me (in Ubuntu 18.04):

gsettings set org.gnome.mutter overlay-key ''
gsettings set org.gnome.shell.keybindings toggle-application-view "['Super_L']"
Answered By: demonGeek

For me, running Elementary OS, the below command worked:

gsettings set org.gnome.desktop.wm.keybindings panel-main-menu "['Super_L']"
Answered By: DoublePlusThink

In my case I needed to figure out which key was mapped to the physical super key.

  1. Launch Settings -> Region & Language.
  2. Click on the Input Sources list and choose a language (in my case it was English).
  3. Click on the little “keyboard” button in the right corner of the window and launch “Show keyboard layout”.
  4. Click Super button and figure out that it’s mapped to Super_R
  5. Run gsettings set org.gnome.desktop.wm.keybindings panel-main-menu "['Super_R']"

All good now!

Answered By: Asalle

For GNOME 3.34.4 in Manjaro, try this

gsettings set org.gnome.shell.keybindings toggle-application-view "['Super_L']"
Answered By: ozhuang

My custom shortcut key stopped working just now because of Tab key get stuck in my external keyboard. The key get stuck causes different combination keys and you may wonder why not working as expected.

So double check your keyboard for such case if keys not working.

Answered By: 林果皞

On Ubuntu 18.04.4 LTS I’ve installed https://extensions.gnome.org/extension/1198/start-overlay-in-application-view/
and done

gsettings set org.gnome.desktop.wm.keybindings panel-main-menu "['Super_L']"
Answered By: CrafterKolyan

In gnome 3.36.4, mapping Super_L directly to an action using gsettings interfered with the keybindings involving Super_L as a modifier key (e.g., Super+Space to change input source) for me, which was annoying.

To get around this, I installed xcape and configured what pressing and releasing Super_L alone would do. In this case, one could set:

xcape -e "Super_L=Super_L|a"
Answered By: frippe
Categories: Answers Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.