aboutsummaryrefslogtreecommitdiffstats
path: root/applets/mb-applet-xterm-wrapper.sh
blob: 25d49096bc056d7877ca7318f8bad5fd006d2f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# This just wraps rxvt and xterm so a term gets launched ok.
# rxvt is the preference. This could be much improved
#

if [ -x /usr/X11R6/bin/rxvt ]; then
   exec /usr/X11R6/bin/rxvt;
else
   if [ -x /usr/bin/rxvt ]; then
      exec /usr/bin/rxvt;
   else
      exec xterm; 
   fi
fi