File: xinitrc.sample

package info (click to toggle)
slim 1.3.4-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,928 kB
  • sloc: cpp: 3,435; ansic: 204; sh: 188; makefile: 16
file content (23 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# the following variable defines the session which is started if the user
# doesn't explicitely select a session
DEFAULT_SESSION=twm

case $1 in
xfce4)
	exec startxfce4
	;;
icewm)
	icewmbg &
	icewmtray &
	exec icewm
	;;
wmaker)
	exec wmaker
	;;
blackbox)
	exec blackbox
	;;
*)
	exec $DEFAULT_SESSION
	;;
esac