Bonsoir, je suis en train de créer une série de scripts pour l'installation de logiciel depuis les dépôt aur, j'ai pour système arch linux avec openbox.
Question : je souhaiterai après installation d'un logiciel (vscode dans l'exemple qui suit) crée une entré dans le menu.xml directement dans la catégories <menu id="root-menu-101141" label="Developpement"> Ligne 45 du menu.xml.
Mon script me place l'entré a la fin du menu.xml.
Voici mon menu.xml
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #!/bin/bash yaourt -S code-git --noconfirm # pour installation de vscode # Pour l'intégration dans le menu.xml cat >> ~/.config/openbox/menu.xml << EOF <item label="vscode"> <action name="Execute"> <command>code</command> </action> </item> EOF openbox --reconfigure
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277 <?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-menu" label="Openbox 3"> <menu id="accessories" label="Accessories"> <item label="File-Roller"> <action name="Execute"> <command> file-roller </command> </action> </item> <item label="Task Manager (htop)"> <action name="Execute"> <command>gksu htop</command> </action> </item> <item label="Terminal (root)"> <action name="Execute"> <command> gksu terminology </command> </action> </item> <item label="File Manager (root)"> <action name="Execute"> <command> gksu nautilus </command> </action> </item> <item label="Terminal"> <action name="Execute"> <execute>terminology</execute> </action> </item> </menu> <menu id="root-menu-101141" label="Developpement"> <item label="Atom"> <action name="Execute"> <command>atom</command> </action> </item> # Entrée à placé Ici </menu> <menu id="graphics" label="Graphics"> <item label="GIMP"> <action name="Execute"> <command> gimp </command> </action> </item> <item label="Viewnior Image Viewer"> <action name="Execute"> <command> viewnior </command> </action> </item> <item label="Feh"> <action name="Execute"> <command> feh </command> </action> </item> <item label="Imagemagick"> <action name="Execute"> <command> imagemagick </command> </action> </item> <item label="Blender"> <action name="Execute"> <command> blender </command> </action> </item> </menu> <menu id="multimedia" label="Multimedia"> <item label="Mpv"> <action name="Execute"> <command>mpv</command> </action> </item> <item label="Deadbeef"> <action name="Execute"> <command> deadbeef </command> </action> </item> <item label="Volume Control"> <action name="Execute"> <command> pavucontrol </command> </action> </item> <item label="Totem"> <action name="Execute"> <command>totem</command> </action> </item> </menu> <menu id="network" label="Network"> <item label="firefox"> <action name="Execute"> <command> firefox </command> </action> </item> <item label="Messagerie"> <action name="Execute"> <command> thunderbird </command> </action> </item> </menu> <menu id="office" label="Office"> <item label="libreoffice"> <action name="Execute"> <command>libreoffice</command> </action> </item> <item label="Evince"> <action name="Execute"> <command> evince </command> </action> </item> </menu> <separator/> <menu id="settings" label="Settings"> <menu id="conkyconfig" label="Conky"> <item label="Edit .conkyrc"> <action name="Execute"> <command> gvim ~/.conkyrc </command> </action> </item> </menu> <menu id="gmrunconfig" label="gmrun"> <item label="Edit config file"> <action name="Execute"> <command> gvim ~/.gmrunrc </command> </action> </item> </menu> <menu id="obConfig" label="Openbox"> <item label="Edit menu.xml"> <action name="Execute"> <command> gvim ~/.config/openbox/menu.xml </command> </action> </item> <item label="Edit rc.xml"> <action name="Execute"> <command> gvim ~/.config/openbox/rc.xml </command> </action> </item> <item label="Edit autostart"> <action name="Execute"> <command> gvim ~/.config/openbox/autostart </command> </action> </item> <separator/> <item label="Obmenu"> <action name="Execute"> <command> obmenu </command> </action> </item> <item label="Obconf"> <action name="Execute"> <command> obconf </command> </action> </item> <separator/> <item label="Reconfigure"> <action name="Reconfigure"/> </item> <item label="Restart"> <action name="Restart"/> </item> </menu> <menu id="tint2config" label="tint2"> <item label="Edit config file"> <action name="Execute"> <command> gvim ~/.config/tint2/tint2rc </command> </action> </item> <item label="tint2config"> <action name="Execute"> <command> tint2conf </command> </action> </item> </menu> <menu id="DisplaySettings" label="Display Settings"> <item label="Resolution"> <action name="Execute"> <command> arandr </command> </action> </item> </menu> <item label="Lxappearance"> <action name="Execute"> <command> lxappearance </command> </action> </item> </menu> <menu id="system" label="System"> <item label="GParted"> <action name="Execute"> <command> gksudo gparted </command> </action> </item> <menu id="script" label="Script Installation"> <item label="Yaourt"> <action name="Execute"> <execute>terminology -e sh ~/bin/yaourt.sh</execute> </action> </item> <item label="Sublime Text"> <action name="Execute"> <execute>terminology -e sudo sh ~/bin/sublimtext.sh</execute> </action> </item> <item label="VS Code"> <action name="Execute"> <execute>terminology -e sh ~/bin/vscode.sh</execute> </action> </item> </menu> </menu> <separator/> <item label="Reboot"> <action name="Execute"> <execute>terminology -e sudo 'shutdown -r now'</execute> </action> </item> <item label="Arret"> <action name="Execute"> <execute>terminology -e sudo 'shutdown -h now'</execute> </action> </item> <separator/> </menu> </openbox_menu>
Partager