f085babd6b16cd6beb3b00dd1428591d4f1c0ec4
[openpandora.oe.git] / recipes / pandora-system / pandora-skel / .xinitrc
1 #HACK: Run Xsession.d in this place :-o
2
3 SYSSESSIONDIR=/etc/X11/Xsession.d
4 run-parts $SYSSESSIONDIR
5
6 # The following variable defines the session which is started if the user
7 # doesn't explicitely select a session in SLiM.
8
9 DEFAULT_SESSION=startxfce4
10
11 case $1 in
12 xfce4)
13         exec startxfce4
14         ;;
15 pmenu)
16         exec pmenu
17         ;;
18 *)
19         exec $DEFAULT_SESSION
20         ;;
21 esac