Bug 6357 - Define hotkey for menu item action
Status: RESOLVED WONTFIX
Alias: None
Product: Openbox
Classification: Unclassified
Component: general
Version: unspecified
Hardware: PC Linux
: P3 normal
Assignee: Dana Jansens
QA Contact:
URL:
Depends on:
Blocks: 6358
 
Reported: 2015-01-20 08:54 EST by Alexey Korop
Modified: 2018-03-12 08:53:31 EDT
1 user (show)

See Also:


Attachments
keybind_item.patch (1.56 KB, patch)
2015-01-20 08:54 EST, Alexey Korop

Description Alexey Korop 2015-01-20 08:54:01 EST
Created attachment 3509 [details]
keybind_item.patch

Proposed patch add the "key" property to the menu item definition that allow to define the hotkey for item action without copypast the action to the rc.xml.
Exampe:

menu.xml
    <item label="Terminal" key="W-t">
      <action name="Execute">
        <execute>urxvt</execute>
      </action>
    </item>

This is equivalent of

menu.xml
    <item label="Terminal">
      <action name="Execute">
        <execute>urxvt</execute>
      </action>
    </item>

rc.xml
    <keybind key="W-t">
      <action name="Execute">
        <execute>urxvt</execute>
      </action>
    </item>
Comment 1 Mikachu 2018-03-12 08:53:31 EDT
I don't think this is worth the complications. Thanks for the patch though.