Advertisement
Guest User

Untitled

a guest
May 18th, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. xbmc@xbmc:~/.config/openbox$ cat menu.xml
  2. <menu id="root-menu" label="Openbox 3">
  3. <item label="Terminal">
  4. <action name="Execute"><execute>x-terminal-emulator</execute></action>
  5. </item>
  6. <item label="Chromium">
  7. <action name="Execute"><execute>chromium-browser</execute></action>
  8. </item>
  9. <item label="PCManFM">
  10. <action name="Execute"><execute>pcmanfm</execute></action>
  11. </item>
  12. <item label="XBMC">
  13. <action name="Execute"><execute>xbmc</execute></action>
  14. </item>
  15. <item label="Steam">
  16. <action name="Execute"><execute>steam</execute></action>
  17. </item>
  18. <item label="Steam BPM">
  19. <action name="Execute"><execute>~/.config/openbox/steam-bpm.sh</execute></action>
  20. </item>
  21. <!-- This requires the presence of the 'menu' package to work -->
  22. <menu id="/Debian" />
  23. <separator />
  24. <item label="Reboot">
  25. <action name="Execute">
  26. <prompt>Are you sure you want to reboot?</prompt>
  27. <execute>dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Restart</execute>
  28. </action>
  29. </item>
  30.  
  31. <item label="Shutdown">
  32. <action name="Execute">
  33. <prompt>Are you sure you want to shutdown?</prompt>
  34. <execute>dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop</execute>
  35. </action>
  36. </item>
  37.  
  38. <item label="Suspend">
  39. <action name="Execute">
  40. <prompt>Are you sure you want to suspend?</prompt>
  41. <execute>dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Suspend</execute>
  42. </action>
  43. </item>
  44.  
  45. <item label="Log Out">
  46. <action name="Execute">
  47. <prompt>Are you sure you want to log-out?</prompt>
  48. <execute>openbox --exit</execute>
  49. </action>
  50. </item>
  51. </menu>
  52.  
  53. </openbox_menu>
  54. xbmc@xbmc:~/.config/openbox$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement