-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmenu.xml
111 lines (111 loc) · 2.63 KB
/
menu.xml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="utf-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="config-menu" label=" Configuration">
<item label="Openbox Configuration Manager">
<action name="Execute">
<command>obconf</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Openbox Menu Configurator">
<action name="Execute">
<execute>obmenu</execute>
</action>
</item>
<item label="Appearance and Settings">
<action name="Execute">
<command>lxappearance</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Tint2 Configuration">
<action name="Execute">
<command>tint2conf</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Set Background">
<action name="Execute">
<command>nitrogen</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<item label="Set Keyboard Shortcuts">
<action name="Execute">
<command>obkey</command>
<startupnotify>
<enabled>yes</enabled>
</startupnotify>
</action>
</item>
<separator/>
<item label="Reconfigure Openbox">
<action name="Reconfigure"/>
</item>
</menu>
<menu id="system-menu" label=" System">
<item label=" Shutdown ">
<action name="Execute">
<command>systemctl poweroff</command>
</action>
</item>
<item label=" Restart">
<action name="Execute">
<command>systemctl reboot</command>
</action>
</item>
<item label=" Log Out">
<action name="Exit">
<prompt>yes</prompt>
</action>
</item>
</menu>
<menu id="root-menu" label="Openbox 3">
<item label=" Google Chrome ">
<action name="Execute">
<execute>google-chrome-stable</execute>
</action>
</item>
<item label=" Terminal">
<action name="Execute">
<execute>terminator</execute>
</action>
</item>
<item label=" File Manager">
<action name="Execute">
<execute>nautilus</execute>
</action>
</item>
<item label=" VLC Player">
<action name="Execute">
<execute>vlc</execute>
</action>
</item>
<item label=" Text Editor">
<action name="Execute">
<execute>gedit</execute>
</action>
</item>
<item label=" Plex">
<action name="Execute">
<execute>plexhometheater.sh</execute>
</action>
</item>
<item label=" Spotify">
<action name="Execute">
<execute>spotify</execute>
</action>
</item>
<separator/>
<menu id="config-menu"/>
<menu id="system-menu"/>
</menu>
</openbox_menu>