summaryrefslogtreecommitdiffstats
path: root/sesman/startwm.sh
blob: e28b00ddd0416a9258d213be038f7f16eb4551e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
if [ "'which startkde'" != "" ]; then
  startkde
  exit 0
fi
if [ "'which kde'" != "" ]; then
  kde
  exit 0
fi
if [ "'which blackbox'" != "" ]; then
  blackbox
  exit 0
fi
if [ "'which fvwm95'" != "" ]; then
  fvwm95
  exit 0
fi
if [ "'which xterm'" != "" ]; then
  xterm
  exit 0
fi