web-dev-qa-db-fra.com

Lier la touche Windows au menu de démarrage de Lubuntu

Je cours Lubuntu 11.10. Par défaut, le menu principal est lié à Alt + F1 (A-F1), ce qui fonctionne. Voici le code correspondant de ~/.config/openbox/lubuntu-rc.xml

<keybind key="A-F1">
  <action name="Execute">
    <command>lxpanelctl menu</command>
  </action>
</keybind>

Cela marche. Lorsque je frappe sur Alt + F1, je peux voir le menu de démarrage.

Si je remplace les touches par "Touche Windows + M" (W-m), je peux afficher le menu Démarrer à l'aide de Win + M.

<keybind key="W-m">
  <action name="Execute">
    <command>lxpanelctl menu</command>
  </action>
</keybind>

Cependant, je ne peux pas lier le menu Démarrer à la touche Windows uniquement. Si j'essaie de remplacer "W-m" par "W", la touche "W" de l'alphabet est liée au menu de démarrage. Si j'essaie "W-" rien ne se passe, j'ai essayé l'option "Super" aussi mais en vain.

Comment puis-je lier le menu principal de Lubuntu à la touche Windows?

Je suis passé par des questions pertinentes sur Lubuntu, comme celle-ci, qui tente de faire le contraire. Comment désolidariser la touche Super du menu à Lubunt

17
abel

J'ai réussi à faire en sorte que cela fonctionne avec 'Super_L', pas 'Super'. J'espère que ça marche. Vous pouvez également définir "Super_R" ​​pour faire la même chose, si vous en avez un.

23
Echogene

Super_L a travaillé pour moi

<keybind key="Super_L">
  <action name="Execute">
    <command>lxpanelctl menu</command>
  </action>
</keybind>
10
Diego

Ubuntu 10.x

En terminal:

gconftool-2 --set /apps/metacity/global_keybindings/panel_main_menu --type string "Super_L"

De: http://www.howtogeek.com/howto/27038/use-the-windows-key-for-the-start-menu-in-ubuntu-linux-10.04/

1
Eduardo Cuomo