1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 15:03:37 +00:00
.dotfiles/configs/openbox/menu.xml

34 lines
1.2 KiB
XML
Raw Normal View History

2024-12-12 04:37:08 +00:00
<?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" label="Menu">
<item label="Browser">
<action name="Execute">
<command>firefox</command>
</action>
</item>
<item label="Terminal">
<action name="Execute">
<command>kitty</command>
</action>
</item>
<item label="Task Manager">
<action name="Execute">
<command>xfce4-taskmanager</command>
</action>
</item>
<separator/>
<item label="Restart">
<action name="Execute">
<command>reboot now</command>
<prompt>Really shutdown the computer?</prompt>
</action>
</item>
<item label="Shutdown">
<action name="Execute">
<command>shutdown now</command>
<prompt>Really shutdown the computer?</prompt>
</action>
</item>
</menu>
</openbox_menu>