You are not logged in.
Pages: 1
Hi, trying to get a nice clean menu like this one by haxit: http://haxit.deviantart.com/art/MAXTOR-010109-107984071
But when using obmenu I can't create the top 2 shell, running etc...cant create top items, just items within a subfolder...?
[ logicspot.NET | mempad.org ]
Archlinux x64
Offline
You need to edit the menu with the label "Openbox 3".
Offline
Hi, trying to get a nice clean menu like this one by haxit: http://haxit.deviantart.com/art/MAXTOR-010109-107984071
But when using obmenu I can't create the top 2 shell, running etc...cant create top items, just items within a subfolder...?
To create the "top items" in obmenu, you just need to add a new item directly under the root menu.
~/.config/openbox/menu.xml
<openbox_menu>
<menu id="root-menu" label="OpenBox 3">
<separator label="Ephraim"/>
<item label="URxvt">
<action name="Execute">
<execute>
urxvt
</execute>
</action>
</item>
<item label="Firefox">
<action name="Execute">
<execute>
firefox-beta
</execute>
</action>
</item>
<item label="Thunderbird">
<action name="Execute">
<execute>
thunderbird3
</execute>
</action>
</item>
<separator/>
<item label="Thunar">
<action name="Execute">
<execute>
thunar
</execute>
</action>
</item>
<item label="F-Spot">
<action name="Execute">
<execute>
f-spot
</execute>
</action>
</item>
<item label="irssi">
<action name="Execute">
<execute>
urxvt -geometry 64x64+20+40 -color8 white -shading 50 -e irssi
</execute>
</action>
</item>
<item label="rTorent">
<action name="Execute">
<execute>
urxvt -e rtorrent
</execute>
</action>
</item>
<separator/>
<item label="OssXmiX">
<action name="Execute">
<execute>
ossxmix -S
</execute>
</action>
</item>
<item label="ncmpcpp">
<action name="Execute">
<execute>
urxvt -geometry 206x14+20+824 -e ncmpcpp
</execute>
</action>
</item>
Offline
Pages: 1