1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-01 03:09:32 +00:00
This commit is contained in:
Rae 5e 2024-12-11 23:37:08 -05:00
parent 31500a22ec
commit 14a4f4d391
5 changed files with 760 additions and 26 deletions

33
configs/openbox/menu.xml Normal file
View file

@ -0,0 +1,33 @@
<?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>

View file

@ -52,4 +52,13 @@
</action>
</keybind>
</keyboard>
<mouse>
<context name="Root">
<mousebind button="Right" action="Click">
<action name="ShowMenu">
<menu>root</menu>
</action>
</mousebind>
</context>
</mouse>
</openbox_config>