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

56 lines
1.9 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">
2024-12-16 05:19:22 +00:00
<item label="Firefox">
2024-12-12 04:37:08 +00:00
<action name="Execute">
<command>firefox</command>
</action>
</item>
2024-12-16 05:19:22 +00:00
<item label="kitty">
2024-12-12 04:37:08 +00:00
<action name="Execute">
<command>kitty</command>
</action>
</item>
2024-12-16 05:33:36 +00:00
<item label="Dolphin">
<action name="Execute">
<command>dolphin</command>
</action>
</item>
2024-12-16 05:19:22 +00:00
<item label="VSCodium">
<action name="Execute">
<command>codium</command>
</action>
</item>
2024-12-12 04:37:08 +00:00
<item label="Task Manager">
<action name="Execute">
2024-12-16 05:19:22 +00:00
<command>com.github.stsdc.monitor</command>
2024-12-12 04:37:08 +00:00
</action>
</item>
<separator/>
2024-12-16 02:12:41 +00:00
<item label="Set Wallpaper">
<action name="Execute">
<command>nitrogen ~/.dotfiles/assets/wallpapers</command>
</action>
</item>
<separator/>
2024-12-16 05:38:59 +00:00
<item label="Logout">
<action name="Execute">
2024-12-16 05:41:58 +00:00
<command>loginctl kill-user rae</command>
2024-12-16 05:38:59 +00:00
<prompt>Really close all applications and log out?</prompt>
</action>
</item>
2024-12-12 04:37:08 +00:00
<item label="Restart">
<action name="Execute">
2024-12-16 05:19:22 +00:00
<command>shutdown -r now</command>
2024-12-12 04:37:08 +00:00
<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>