I want to bind the "Super key" to open LXDE Menu (img below) but cant find the action in Openbox help
Anyone know what action is it? Please give an advice! Many thanks!

Some bozos have put spam, including that one, in pretty well every topic in the last day or two.huihs wrote:3. On a serious note, why is Blizzard making everyone wait Diablo 3 Gold for Sale until Cali hits 12am for the game to go live? 3am?! Come on. I was excited about the release of this game but like my star craft 2 it wont get played because the game requires you to have a constant internet connection. This is a bad direction for game developers to take th
I sometimes think posting spam should be a capital offence.Rex Bouwense wrote:It seems a shame since there are so few of us that are active in this forum that some knuckle-head(s) have to SPAM the forums for no reason other than they can. Where are the moderators when you need them?
Getting back to the subject, the super key is already binded (is that a word) to the start menu in Lubuntu 11.10. What distro are you using?
Code: Select all
<keybind key="Super_L">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
Code: Select all
[code]<keybind key="Super_L">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
Right on!gymka wrote:BIND:
in ~/.config/openbox/lxde-rc.xml, keyboard section add:UNBIND:Code: Select all
<keybind key="Super_L"> <action name="Execute"> <command>lxpanelctl menu</command> </action> </keybind>
in ~/.config/openbox/lxde-rc.xml, keyboard section remove:[/code]Code: Select all
[code]<keybind key="Super_L"> <action name="Execute"> <command>lxpanelctl menu</command> </action> </keybind>
it's explained in lxde wiki...
Code: Select all
<keybind key="Super_L">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
<keybind key="Super_R">
<action name="Execute">
<command>lxpanelctl menu</command>
</action>
</keybind>
Code: Select all
<!-- My own personal keybindings -->
<!-- Super-L to lock the screen with the screen saver -->
<keybind key="W-l">
<action name="Execute">
<command>xscreensaver-command -lock</command>
</action>
</keybind>
<!-- Super-x to execute the logout command -->
<keybind key="W-x">
<action name="Execute">
<command>
lxsession-logout --banner=/home/user/.extra-icons/1204-logout-banner.png --side=top
</command>
</action>
</keybind>
<!-- Super-w to execute my prefered browser; Opera -->
<keybind key="W-w">
<action name="Execute">
<command>opera</command>
</action>
</keybind>
<!-- Super-m to execute my prefered email client; Sylpheed -->
<keybind key="W-m">
<action name="Execute">
<command>sylpheed</command>
</action>
</keybind>
<!-- Super-e to execute my prefered text editor; gedit -->
<keybind key="W-e">
<action name="Execute">
<command>gedit</command>
</action>
</keybind>