34

Where can I disable super_L key (windows key) opening KDE menu?

Or where can I change this shortcut?

pevik
  • 600

2 Answers2

46

In KDE Plasma 5.8, the super/win key is also used to trigger the launcher, when pressed and released without combining it with another key. To disable the feature,

  1. put this into ~/.config/kwinrc:

    [ModifierOnlyShortcuts]
    Meta=
    
  2. then reload the window manager (kwin), either by logging out and logging back in, or with with this command:

    qdbus org.kde.KWin /KWin reconfigure
    

Equivalently run this

kwriteconfig5 --file kwinrc --group ModifierOnlyShortcuts --key Meta ""

Sources:

7

Things have changed in Plasma 6.1 concerning "modifier-only" shortcuts, and it's much easier to do such a configuration: they can be configured visually with the Shortcut system settings and are now stored together with other shortcuts in “~/.config/kglobalshortcutsrc”.

More details can be found here: https://www.lorenzobettini.it/2024/06/modifier-only-shortcuts-in-kde-plasma-6-1/

Here's an example of the default configuration for the "Meta" key:

enter image description here

lorenzo-bettini
  • 191
  • 1
  • 3