real quick, what is the keyboard shortcut for the "start" menu, and how do you change it? I am used to it being either Ctrl-ESC or Alt-F3, but neither of those work.

keyboard shortcut for start menu
(2 posts) (2 voices)-
Posted 13 years ago #
-
You have to add your own to either /etc/xdg/openbox/rc.xml or copy rc.xml to ~/.config/openbox
On cooking this configures left windows key to open applications menu and right windows key to launch xterm.
tux@slitaz:~$ diff /etc/xdg/openbox/rc.xml .config/openbox/rc.xml
--- /etc/xdg/openbox/rc.xml
+++ .config/openbox/rc.xml
@@ -271,8 +271,18 @@
</startupnotify>
<command>lxpanelctl run</command>
</action>
- </keybind>
- </keyboard>
+ </keybind>
+ <keybind key="Super_L">
+ <action name="Execute">
+ <command>lxpanelctl menu</command>
+ </action>
+ </keybind>
+ <keybind key="Super_R">
+ <action name="Execute">
+ <command>xterm</command>
+ </action>
+ </keybind>
+</keyboard>
<mouse>
<dragThreshold>8</dragThreshold>
<!-- number of pixels the mouse must move before a drag begins -->Posted 13 years ago #
Reply
You must log in to post.