Openbox – How to Set a Single Modifier Key as a Shortcut

desktop-environmentkeyboard shortcutsopenbox

I want to have my super key start dmenu.
I have set it as a keyboard shortcut in my rc.xml as follows:

<keybind key="0xffeb">
      <action name="Execute">
        <command>dmenu_run</command>
      </action>
</keybind>

I tried specifying it in the key attribute as W, W-, and 0xffeb, but none of these worked.
W responds to pressing the letter w, and the others appear to do nothing.

I want the shortcut to trigger when the super key is pressed and released on it's own. Is this possible?


This is cross posted from super user as per the guidelines here. I've read this question: Super key as shortcut – Openbox, but I didn't see any useful information in it.

Best Answer

I ended up using xcape, a utility designed to do exactly this:

xcape allows you to use a modifier key as another key when pressed and released on its own. Note that it is slightly slower than pressing the original key, because the pressed event does not occur until the key is released.

Quoted from the xcape readme

Using xcape, you can assign the press and release of a modifier key to a different key or even a sequence of keys. For example, you can assign Linux key Super to a placeholder shortcut like ⎈ Ctrl⇧ Shift⎇ AltLinux key SuperD with:

xcape -e 'Super_L=Control_L|Shift_L|Alt_L|Super_L|D'

Now when you press and release Linux key Super without pressing any other keys, xcape will send keyboard events simulating presses of ⎈ Ctrl⇧ Shift⎇ AltLinux key SuperD (holding all the modifier keys down as if you pressed them like a shortcut).

If you press Linux key Super and another key (or hold Linux key Super too long, the default timeout is 500 ms), xcape will pass the keyboard events through as is, without firing extra keys.

If you put the placeholder shortcut in rc.xml, it will run when Linux key Super and only Linux key Super is pressed.

<keybind key="C-A-S-W-d">
      <action name="Execute">
          <command>dmenu_run</command>
      </action>
</keybind>

Other shortcuts involving Linux key Super will not be affected.

Note that you'll have to run xcape each time you boot, so you may want to put it somewhere like ~/.config/openbox/autostart where it will be run automatically.