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
2024-12-16 23:00:45 -05:00

55 lines
1.9 KiB
XML

<?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="Firefox">
<action name="Execute">
<command>firefox</command>
</action>
</item>
<item label="kitty">
<action name="Execute">
<command>kitty</command>
</action>
</item>
<item label="File Browser">
<action name="Execute">
<command>io.elementary.files</command>
</action>
</item>
<item label="VSCodium">
<action name="Execute">
<command>codium</command>
</action>
</item>
<item label="Task Manager">
<action name="Execute">
<command>com.github.stsdc.monitor</command>
</action>
</item>
<separator/>
<item label="Set Wallpaper">
<action name="Execute">
<command>nitrogen ~/.dotfiles/assets/wallpapers</command>
</action>
</item>
<separator/>
<item label="Logout">
<action name="Execute">
<command>loginctl kill-user rae</command>
<prompt>Really close all applications and log out?</prompt>
</action>
</item>
<item label="Restart">
<action name="Execute">
<command>shutdown -r 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>