aboutsummaryrefslogtreecommitdiff
path: root/data/generate_menu
blob: 49b5adc7f0ba8f002fdec61eb4ec34217ea63d6d (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
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
# generate_menu for Fluxbox 
# Copyright (c) 2001 Henrik Kinnunen (fluxgen@linuxmail.org)
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

#!/bin/sh

FILENAME=menu.in


# Start of menu

echo "[begin] (Fluxbox @VERSION@)" > $FILENAME

if [ -x `which xterm` ]; then 		
		echo "	[exec] (xterm) {xterm -fg white -bg black}" >> $FILENAME		
fi

if [ -x `which nedit` ]; then 		
		echo "	[exec] (nedit) {nedit}" >> $FILENAME		
fi

echo "[submenu] (Browsers)" >> $FILENAME
	if [ -x `which netscape` ]; then 		
		echo "	[exec] (netscape) {netscape}" >> $FILENAME		
	fi
	if [ -x `which opera` ]; then 		
		echo "	[exec] (opera) {opera}" >> $FILENAME		
	fi
	if [ -x `which galeon` ]; then 		
		echo "	[exec] (galeon) {galeon}" >> $FILENAME		
	fi
	if [ -x `which mozilla` ]; then 		
		echo "	[exec] (mozilla) {mozilla}" >> $FILENAME		
	fi
	if [ -x `which konqueror` ]; then 		
		echo "	[exec] (konqueror) {konqueror}" >> $FILENAME		
	fi	
echo "[end]" >> $FILENAME


echo "[submenu] (Editors)" >> $FILENAME
	if [ -x `which nedit` ]; then 		
		echo "	[exec] (nedit) {nedit}" >> $FILENAME		
	fi
	if [ -x `which vim` ]; then 		
		echo "	[exec] (vim) {vim -g}" >> $FILENAME		
	fi
	if [ -x `which xemacs` ]; then 		
		echo "	[exec] (xemacs) {xemacs}" >> $FILENAME		
	fi
	if [ -x `which gedit` ]; then 		
		echo "	[exec] (gedit) {gedit}" >> $FILENAME		
	fi
	if [ -x `which xedit` ]; then 		
		echo "	[exec] (xedit) {xedit}" >> $FILENAME		
	fi
	if [ -x `which kword` ]; then 		
		echo "	[exec] (kword) {kword}" >> $FILENAME		
	fi

echo "[end]" >> $FILENAME

echo "[submenu] (Net)" >> $FILENAME
	if [ -x `which realplay` ]; then 		
		echo "	[exec] (realplay) {realplay}" >> $FILENAME		
	fi
	
	if [ -x `which licq` ]; then 		
		echo "	[exec] (licq) {licq}" >> $FILENAME		
	fi
	if [ -x `which xchat` ]; then 		
		echo "	[exec] (xchat) {xchat}" >> $FILENAME		
	fi
	if [ -x `which sylpheed` ]; then 		
		echo "	[exec] (sylpheed) {sylpheed}" >> $FILENAME		
	fi
	if [ -x `which gftp` ]; then 		
		echo "	[exec] (gftp) {gftp}" >> $FILENAME		
	fi
	if [ -x `which BitchX` ]; then 		
		echo "	[exec] (BitchX) {xterm -title BitchX -fg white -bg black -e BitchX -N}" >> $FILENAME
	else
		if [ -x `which bitchx` ]; then 		
			echo "	[exec] (BitchX) {xterm -title BitchX -fg white -bg black -e bitchx -N}" >> $FILENAME
		fi
	fi
	if [ -x `which ircii` ]; then 		
		echo "	[exec] (ircii) {xterm -title ircii -fg white -bg black -e ircii -s}" >> $FILENAME
	fi
echo "[end]" >> $FILENAME


echo "[submenu] (Graphics)" >> $FILENAME
	if [ -x `which gimp` ]; then 		
		echo "	[exec] (gimp) {gimp}" >> $FILENAME		
	fi
	if [ -x `which xv` ]; then 		
		echo "	[exec] (xv) {xv}" >> $FILENAME		
	fi
	if [ -x `which gqview` ]; then 		
		echo "	[exec] (gqview) {gqview}" >> $FILENAME		
	fi
	if [ -x `which xpaint` ]; then 		
		echo "	[exec] (xpaint) {xpaint}" >> $FILENAME		
	fi
echo "[end]" >> $FILENAME

echo "[submenu] (Music)" >> $FILENAME
	if [ -x `which xmms` ]; then 		
		echo "	[exec] (xmms) {xmms}" >> $FILENAME		
	fi
	if [ -x `which gqmpeg` ]; then 		
		echo "	[exec] (gqmpeg) {gqmpeg}" >> $FILENAME		
	fi
	if [ -x `which xmixer` ]; then 		
		echo "	[exec] (xmixer) {xmixer}" >> $FILENAME		
	fi
	if [ -x `which gmix` ]; then 		
		echo "	[exec] (gmix) {gmix}" >> $FILENAME		
	fi
	if [ -x `which xplaycd` ]; then 		
		echo "	[exec] (xplaycd) {xplaycd}" >> $FILENAME		
	fi
	if [ -x `which soundtracker` ]; then 		
		echo "	[exec] (soundtracker) {soundtracker}" >> $FILENAME		
	fi
echo "[end]" >> $FILENAME

echo "[submenu] (Terminals)" >> $FILENAME
	if [ -x `which xterm` ]; then 		
		echo "	[exec] (xterm) {xterm -fg white -bg black}" >> $FILENAME		
	fi
	if [ -x `which gnome-terminal` ]; then
		echo "  [exec] (gnome-terminal) {gnome-terminal}" >> $FILENAME
	fi	
	if [ -x `which Eterm` ]; then
		echo "  [exec] (Eterm) {Eterm}" >> $FILENAME
	fi	
	if [ -x `which konsole` ]; then
		echo "  [exec] (konsole) {konsole}" >> $FILENAME
	fi	
	if [ -x `which aterm` ]; then
		echo "  [exec] (aterm) {aterm}" >> $FILENAME
	fi	
	if [ -x `which rxvt` ]; then
		echo "  [exec] (rxvt) {rxvt}" >> $FILENAME
	fi
echo "[end]" >> $FILENAME	


echo "[submenu] (Misc)" >> $FILENAME
	if [ -x `which acroread` ]; then
		echo "  [exec] (acroread) {acroread}" >> $FILENAME
	fi
	if [ -x `which gcalc` ]; then
		echo "  [exec] (gcalc) {gcalc}" >> $FILENAME
	fi	
	if [ -x `which xgdb` ]; then
		echo "  [exec] (xgdb) {xgdb}" >> $FILENAME
	fi	
	if [ -x `which ddd` ]; then
		echo "  [exec] (ddd) {ddd}" >> $FILENAME
	fi	
	if [ -x `which xterm` ]; then 		
	  echo "	[exec] (tail access_log) {xterm -fg white -bg black -title access_log -e tail -f /var/log/access_log}" >> $FILENAME
	fi
echo "[end]" >> $FILENAME	

echo "[submenu] (X utils)" >> $FILENAME
	if [ -x `which xpenguins` ]; then
		echo "  [exec] (xpenguins) {xpenguins}" >> $FILENAME
	fi		
	if [ -x `which xcalc` ]; then
		echo "  [exec] (xcalc) {xcalc}" >> $FILENAME
	fi	
	if [ -x `which xfontsel` ]; then
		echo "  [exec] (xfontsel) {xfontsel}" >> $FILENAME
	fi	
	if [ -x `which xman` ]; then
		echo "  [exec] (xman) {xman}" >> $FILENAME
	fi	
	if [ -x `which xload` ]; then
		echo "  [exec] (xload) {xload}" >> $FILENAME
	fi	
	if [ -x `which xfig` ]; then
		echo "  [exec] (xfig) {xfig}" >> $FILENAME
	fi	
	if [ -x `which xbiff` ]; then
		echo "  [exec] (xbiff) {xbiff}" >> $FILENAME
	fi	
	if [ -x `which editres` ]; then
		echo "  [exec] (editres) {editres}" >> $FILENAME
	fi	
	if [ -x `which viewres` ]; then
		echo "  [exec] (viewres) {viewres}" >> $FILENAME
	fi	
	if [ -x `which xsnow` ]; then
		echo "  [exec] (xsnow) {xsnow}" >> $FILENAME
	fi	
	if [ -x `which xclock` ]; then
		echo "  [exec] (xclock) {xclock}" >> $FILENAME
	fi
echo "[end]" >> $FILENAME		


echo "[workspaces] (Workspace List)" >> $FILENAME
echo "[submenu] (Styles) {Choose a style...}" >> $FILENAME
echo "[stylesdir] (@pkgdatadir@/styles)" >> $FILENAME
echo "[end]" >> $FILENAME
echo "[config] (Configuration)" >> $FILENAME
echo "[reconfig] (Reconfigure)" >> $FILENAME
echo "[restart] (Restart)" >> $FILENAME
echo "[exit] (Exit)" >> $FILENAME

echo "[end]" >> $FILENAME