Advertisement
hreikin

menu.xml

Jan 17th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3.     <menu id="root-menu" label="Openbox 3">
  4.         <item label="Run...">
  5.             <action name="Execute">
  6.                 <command>gmrun</command>
  7.             </action>
  8.         </item>
  9.         <separator/>
  10.         <item label="Terminal">
  11.             <action name="Execute">
  12.                 <command>x-terminal-emulator</command>
  13.             </action>
  14.         </item>
  15.         <item label="Browser">
  16.             <action name="Execute">
  17.                 <command>x-www-browser</command>
  18.             </action>
  19.         </item>
  20.         <item label="Home">
  21.             <action name="Execute">
  22.                 <execute>nautilus</execute>
  23.             </action>
  24.         </item>
  25.         <!--separator label="Places"/-->
  26.         <separator label="Settings"/>
  27.         <menu id="settings" label="Settings">
  28.             <separator label="Configs"/>
  29.             <item label="Edit Hosts">
  30.                 <action name="Execute">
  31.                     <execute>gksudo gedit /etc/hosts</execute>
  32.                 </action>
  33.             </item>
  34.             <item label="Edit Grub">
  35.                 <action name="Execute">
  36.                     <execute>gksudo gedit /etc/default/grub</execute>
  37.                 </action>
  38.             </item>
  39.             <item label="Tint2 RC">
  40.                 <action name="Execute">
  41.                     <command>gedit ~/.config/tint2/tint2rc</command>
  42.                 </action>
  43.             </item>
  44.             <item label="gmrun RC">
  45.                 <action name="Execute">
  46.                     <command>gedit ~/.gmrunrc</command>
  47.                 </action>
  48.             </item>
  49.             <item label="Gtk3 Theme rc">
  50.                 <action name="Execute">
  51.                     <execute>gedit .config/gtk-3.0/settings.ini</execute>
  52.                 </action>
  53.             </item>
  54.             <item label="Gtk2 Theme rc">
  55.                 <action name="Execute">
  56.                     <execute>gedit .gtkrc-2.0</execute>
  57.                 </action>
  58.             </item>
  59.             <item label="Edit Fstab">
  60.                 <action name="Execute">
  61.                     <execute>gksudo gedit /etc/fstab</execute>
  62.                 </action>
  63.             </item>
  64.             <menu id="obConfig" label="Openbox">
  65.                 <item label="Edit menu.xml">
  66.                     <action name="Execute">
  67.                         <command>gedit ~/.config/openbox/menu.xml</command>
  68.                     </action>
  69.                 </item>
  70.                 <item label="Edit rc.xml">
  71.                     <action name="Execute">
  72.                         <command>gedit ~/.config/openbox/rc.xml</command>
  73.                     </action>
  74.                 </item>
  75.                 <item label="Edit autostart">
  76.                     <action name="Execute">
  77.                         <command>gedit ~/.config/openbox/autostart</command>
  78.                     </action>
  79.                 </item>
  80.                 <separator/>
  81.                 <item label="GUI Menu Editor">
  82.                     <action name="Execute">
  83.                         <command>obmenu</command>
  84.                     </action>
  85.                 </item>
  86.                 <item label="GUI Config Tool">
  87.                     <action name="Execute">
  88.                         <command>obconf</command>
  89.                     </action>
  90.                 </item>
  91.                 <separator/>
  92.                 <item label="Reconfigure">
  93.                     <action name="Reconfigure"/>
  94.                 </item>
  95.                 <item label="Restart">
  96.                     <action name="Restart"/>
  97.                 </item>
  98.             </menu>
  99.             <separator label="Settings"/>
  100.             <item label="Edit Default Applications">
  101.                 <action name="Execute">
  102.                     <command>terminator --command=&quot;sudo update-alternatives --all&quot;</command>
  103.                 </action>
  104.             </item>
  105.             <item label="Power Management">
  106.                 <action name="Execute">
  107.                     <command>xfce4-power-manager-settings</command>
  108.                 </action>
  109.             </item>
  110.             <item label="Choose Wallpaper">
  111.                 <action name="Execute">
  112.                     <command>nitrogen</command>
  113.                 </action>
  114.             </item>
  115.             <separator label="Tools"/>
  116.             <item label="GParted">
  117.                 <action name="Execute">
  118.                     <command>gksudo gparted</command>
  119.                 </action>
  120.             </item>
  121.             <item label="Synaptic Package Manager">
  122.                 <action name="Execute">
  123.                     <command>gksudo synaptic</command>
  124.                 </action>
  125.             </item>
  126.         </menu>
  127.         <separator/>
  128.         <item label="Exit">
  129.             <action name="Execute">
  130.                 <command>cb-exit</command>
  131.             </action>
  132.         </item>
  133.     </menu>
  134. </openbox_menu>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement