diff options
Diffstat (limited to '.config/openbox/menu.xml')
| -rw-r--r-- | .config/openbox/menu.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/openbox/menu.xml b/.config/openbox/menu.xml index cd37853..866980a 100644 --- a/.config/openbox/menu.xml +++ b/.config/openbox/menu.xml @@ -1,14 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> <openbox_menu xmlns="http://openbox.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://openbox.org/ file:///usr/share/openbox/menu.xsd"> <menu id="root-menu" label="Openbox 3"> + <separator label="Openbox"/> <item label="Terminal emulator"> <action name="Execute"> - <execute>x-terminal-emulator</execute> + <execute>sh -c "setsid -f $TERMINAL"</execute> </action> </item> <item label="Web browser"> <action name="Execute"> - <execute>x-www-browser</execute> + <execute>sh -c "setsid -f $BROWSER"</execute> </action> </item> <!-- This requires the presence of the 'openbox-menu' package to work --> |