2021-02-17 21:08:38 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
<openbox_menu>
|
2023-09-20 09:05:02 +02:00
|
|
|
<!-- Note: for localization support of menu items "client-menu" has to be removed here -->
|
2022-08-11 18:43:51 +01:00
|
|
|
<menu id="client-menu">
|
2022-11-25 03:20:49 +01:00
|
|
|
<item label="Minimize">
|
|
|
|
|
<action name="Iconify" />
|
|
|
|
|
</item>
|
|
|
|
|
<item label="Maximize">
|
|
|
|
|
<action name="ToggleMaximize" />
|
|
|
|
|
</item>
|
|
|
|
|
<item label="Fullscreen">
|
|
|
|
|
<action name="ToggleFullscreen" />
|
|
|
|
|
</item>
|
|
|
|
|
<item label="Decorations">
|
|
|
|
|
<action name="ToggleDecorations" />
|
|
|
|
|
</item>
|
2023-12-19 21:24:55 +00:00
|
|
|
<item label="Always on Top">
|
2022-11-25 03:20:49 +01:00
|
|
|
<action name="ToggleAlwaysOnTop" />
|
|
|
|
|
</item>
|
2022-12-07 15:12:53 +01:00
|
|
|
<!--
|
|
|
|
|
Any menu with the id "workspaces" will be hidden
|
|
|
|
|
if there is only a single workspace available.
|
|
|
|
|
-->
|
2022-11-25 03:20:49 +01:00
|
|
|
<menu id="workspaces" label="Workspace">
|
|
|
|
|
<item label="Move left">
|
|
|
|
|
<action name="SendToDesktop" to="left" />
|
|
|
|
|
</item>
|
|
|
|
|
<item label="Move right">
|
|
|
|
|
<action name="SendToDesktop" to="right" />
|
|
|
|
|
</item>
|
2023-12-19 21:24:55 +00:00
|
|
|
<separator />
|
|
|
|
|
<item label="Always on Visible Workspace">
|
|
|
|
|
<action name="ToggleOmnipresent" />
|
|
|
|
|
</item>
|
2022-11-25 03:20:49 +01:00
|
|
|
</menu>
|
|
|
|
|
<item label="Close">
|
|
|
|
|
<action name="Close" />
|
|
|
|
|
</item>
|
2022-01-26 00:07:10 +01:00
|
|
|
</menu>
|
2022-08-11 18:43:51 +01:00
|
|
|
|
|
|
|
|
<menu id="root-menu">
|
2021-03-04 20:28:38 +00:00
|
|
|
<item label="Web browser">
|
2022-11-25 03:20:49 +01:00
|
|
|
<action name="Execute" command="firefox" />
|
2021-03-04 20:28:38 +00:00
|
|
|
</item>
|
|
|
|
|
<item label="Terminal">
|
2022-11-25 03:20:49 +01:00
|
|
|
<action name="Execute" command="alacritty" />
|
2021-03-04 20:28:38 +00:00
|
|
|
</item>
|
|
|
|
|
<item label="Reconfigure">
|
2022-11-25 03:20:49 +01:00
|
|
|
<action name="Reconfigure" />
|
2021-03-04 20:28:38 +00:00
|
|
|
</item>
|
|
|
|
|
<item label="Exit">
|
2022-11-25 03:20:49 +01:00
|
|
|
<action name="Exit" />
|
2021-03-04 20:28:38 +00:00
|
|
|
</item>
|
|
|
|
|
<item label="Poweroff">
|
2022-11-25 03:20:49 +01:00
|
|
|
<action name="Execute" command="systemctl -i poweroff" />
|
2021-03-04 20:28:38 +00:00
|
|
|
</item>
|
2021-02-17 21:08:38 +00:00
|
|
|
</menu>
|
|
|
|
|
|
2022-12-07 10:52:49 +01:00
|
|
|
<menu id="some-custom-menu">
|
|
|
|
|
<item label="Reconfigure">
|
|
|
|
|
<action name="Reconfigure" />
|
|
|
|
|
</item>
|
|
|
|
|
<item label="Exit">
|
|
|
|
|
<action name="Exit" />
|
|
|
|
|
</item>
|
|
|
|
|
</menu>
|
|
|
|
|
|
2021-02-17 21:08:38 +00:00
|
|
|
</openbox_menu>
|