blob: b34711bf5719cc4516901ade9a5a00b4ef3cd387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<?xml version="1.0" encoding="UTF-8"?>
<openbox_menu>
<!-- Note: for localization support of menu items "client-menu" has to be removed here -->
<menu id="client-menu">
<item label="Minimize">
<action name="Iconify" />
</item>
<item label="Maximize">
<action name="ToggleMaximize" />
</item>
<item label="Fullscreen">
<action name="ToggleFullscreen" />
</item>
<item label="Roll up/down">
<action name="ToggleShade" />
</item>
<item label="Decorations">
<action name="ToggleDecorations" />
</item>
<item label="Always on Top">
<action name="ToggleAlwaysOnTop" />
</item>
<!--
Any menu with the id "workspaces" will be hidden
if there is only a single workspace available.
-->
<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>
<separator />
<item label="Always on Visible Workspace">
<action name="ToggleOmnipresent" />
</item>
</menu>
<item label="Close">
<action name="Close" />
</item>
</menu>
<menu id="root-menu">
</menu>
<menu id="some-custom-menu">
<menu id="custom-apps" label="Apps">
<item label=" Firefox"><action name="Execute" command="firefox" /></item>
<item label=" Terminal"><action name="Execute" command="kitty" /></item>
<item label=" Files"><action name="Execute" command="pcmanfm" /></item>
<separator />
<item label=" Neovim"><action name="Execute" command="kitty nvim" /></item>
<item label=" Zathura"><action name="Execute" command="zathura" /></item>
</menu>
<separator />
<menu id="system-apps" label="system">
<item label=" Theme"><action name="Execute" command="labwc-tweaks" /></item>
</menu>
<separator />
<menu id="power-menu" label="Power" >
<item label=" Reboot">
<action name="Execute" command="systemctl -i reboot" />
</item>
<item label=" Poweroff">
<action name="Execute" command="systemctl -i poweroff" />
</item>
<item label=" Exit">
<action name="Exit" />
<prompt>yes</prompt>
</item>
</menu>
<separator />
<item label=" Reconfigure">
<action name="Reconfigure" />
</item>
</menu>
</openbox_menu>
|