diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-07-20 17:12:30 -0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-07-20 17:12:30 -0400 |
| commit | f4173cd2c510631049bac9399e013a770764811e (patch) | |
| tree | 180ef4da2db914962f043b00455cdfa390023465 /.config/openbox/menu.xml | |
| parent | be9e153ae1efb20077ac519ae1374c47ab5b5e60 (diff) | |
Restyled polybar and tweaked openbox to use env variables
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 --> |