Everything KDE from git master with Qt 5.15.0 on top of openSUSE Tumbleweed. Periodically, the meta key stops opening Kickoff. Kickoff has the Alt+F1 shortcut bound to it, but hitting the meta key does not open it. Looking in my ~/config/.kwinrc file, it does not contain a [ModifierOnlyShortcuts] group. Manually adding the following: [ModifierOnlyShortcuts] Meta=activateLauncherMenu ...And then running `qdbus org.kde.KWin /KWin reconfigure` does not resolve the issue. If I remove the Alt+F1 shortcut from kickoff using the config window and then re-add it, nothing changes; the kwinrc file is not updated and hitting the Meta key still does not open the menu. I've heard a lot of complaints about this on social media recently and have intermittently experienced it myself for the past month or so. Oddly, it seems to fix itself after a day or two, so maybe there's some race condition somewhere.
This is reproducible for me on 5.19 as well as git master, BTW.
I was manually adding the wrong string. You actually need to add this: [ModifierOnlyShortcuts] Meta=org.kde.plasmashell,/PlasmaShell,org.kde.PlasmaShell,activateLauncherMenu ...And now it works. Also, removing that whole section now also works. So I can't reproduce the bug anymore. Will re-open if I get a reproducible case that's not based on config file misconfiguration the next time it breaks.
I just helped a user troubleshoot this on Plasma 5.19.2. She was experiencing this issue her kwinrc file did not have a [ModifierOnlyShortcuts] entry. The Meta key shortcut did not work to launch Kickoff. It started working after I advised her to add the following to the file: [ModifierOnlyShortcuts] Meta=org.kde.plasmashell,/PlasmaShell,org.kde.PlasmaShell,activateLauncherMenu In options.cpp, this is the value that gets assigned to Meta by default if there is nothing set in the config file. Seems like that's not working, or the code that calls is isn't getting run somehow?
Now I'm in a broken state again myself. :( I can debug with instructions.
my kwinrc file currently includes the following: [ModifierOnlyShortcuts] Meta=org.kde.plasmashell,/PlasmaShell,org.kde.PlasmaShell,activateLauncherMenu yet it's still not working.
Restarting KWin has no effect; it's still broken. After I remove that section and restart KWin, the shortcut starts working again. Re-adding it and restarting KWin yet another time has no further effect and it still works. Something odd is going on here...
*** This bug has been marked as a duplicate of bug 391322 ***