2021-02-17 21:08:38 +00:00
|
|
|
<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>
|
2024-06-14 22:17:03 +01:00
|
|
|
<item label="Roll Up/Down">
|
2023-08-08 03:39:35 +02:00
|
|
|
<action name="ToggleShade" />
|
|
|
|
|
</item>
|
2022-11-25 03:20:49 +01:00
|
|
|
<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.
|
|
|
|
|
-->
|
2025-08-13 21:38:40 +01:00
|
|
|
<menu id="client-send-to-menu"/>
|
2024-09-18 19:01:28 -05:00
|
|
|
<!--
|
|
|
|
|
openbox default workspace selector
|
|
|
|
|
to use replace above workspace menu with the example below
|
|
|
|
|
the label is required, but you can change the text.
|
|
|
|
|
|
|
|
|
|
<menu id="client-send-to-menu" label="Send to..." />
|
|
|
|
|
-->
|
2022-11-25 03:20:49 +01:00
|
|
|
<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">
|
2025-02-08 16:26:47 +02:00
|
|
|
<!-- Make client-list-combined-menu a submenu of root-menu
|
2024-09-18 16:50:01 -05:00
|
|
|
You must supply a label or it will not appear in root-menu -->
|
|
|
|
|
<!--
|
|
|
|
|
<menu id="client-list-combined-menu" label="Running..." />
|
|
|
|
|
-->
|
2021-03-04 20:28:38 +00:00
|
|
|
<item label="Terminal">
|
2025-07-01 21:25:40 +01:00
|
|
|
<action name="Execute" command="lab-sensible-terminal" />
|
2021-03-04 20:28:38 +00:00
|
|
|
</item>
|
2025-07-01 21:25:40 +01:00
|
|
|
<separator />
|
2021-03-04 20:28:38 +00:00
|
|
|
<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>
|
2025-06-24 20:44:32 +01:00
|
|
|
<!--
|
|
|
|
|
# A prompt can be used as follows:
|
|
|
|
|
<item label="Exit">
|
2025-08-12 23:25:45 +02:00
|
|
|
<action name="If">
|
2025-06-24 20:44:32 +01:00
|
|
|
<prompt message="Do you really want to exit the compositor?"/>
|
|
|
|
|
<then>
|
|
|
|
|
<action name="Exit"/>
|
|
|
|
|
</then>
|
2025-08-12 23:25:45 +02:00
|
|
|
</action>
|
2025-06-24 20:44:32 +01:00
|
|
|
</item>
|
|
|
|
|
-->
|
2021-02-17 21:08:38 +00:00
|
|
|
</menu>
|
|
|
|
|
|
2022-12-07 10:52:49 +01:00
|
|
|
<menu id="some-custom-menu">
|
2024-08-21 12:27:07 -05:00
|
|
|
<!--
|
|
|
|
|
Creates menu title.
|
|
|
|
|
To create an empty header with no text,
|
|
|
|
|
set label=" ", not label=""
|
|
|
|
|
-->
|
|
|
|
|
<separator label="custom menu" />
|
2022-12-07 10:52:49 +01:00
|
|
|
<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>
|