我正在运行 Lubuntu 11.10。默认情况下,主菜单绑定到 Alt+F1 (A-F1),可以正常工作。以下是来自的相关代码~/.config/openbox/lubuntu-rc.xml
<keybind key="A-F1">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
这有效。当我按下 Alt+F1 时,我可以看到开始菜单。
如果我将键更改为“Windows 键 + M”(Wm),我可以使用 Win+M 调出开始菜单
<keybind key="W-m">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
但是,我无法将开始菜单单独绑定到 Windows 键。如果我尝试用“W”替换“Wm”,则“W”字母键将绑定到开始菜单。如果我尝试“W-”,则什么也没有发生,我也尝试过“Super”选项,但无济于事。
如何将 Lubuntu 主菜单绑定到 Windows 键?
我曾经经历过一些相关的 lubuntu 问题,比如这个,它试图做相反的事情。 如何在 Lubuntu 中解除 Super 键与菜单的绑定
答案1
我设法让它与“Super_L”而不是“Super”一起工作。希望这能奏效。如果您有“Super_R”,您也可以设置“Super_R”来做同样的事情。
答案2
Super_L为我工作
<keybind key="Super_L">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
答案3
Ubuntu 10.x
在终端:
gconftool-2 --set /apps/metacity/global_keybindings/panel_main_menu --type string "Super_L"
从:http://www.howtogeek.com/howto/27038/use-the-windows-key-for-the-start-menu-in-ubuntu-linux-10.04/