blob: 9e8df8d7bf6e67842397790044f821f68e36828d (
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
|
#!/bin/sh
#
# This xinitrc is designed to be used when logging in with SLiM. Sessions
# listed here should be the same ones that are in /etc/slim.conf. If you
# wish to add a session, add a section below, and add it to the sessions
# line in /etc/slim.conf
#
# by Martin Lefebvre (Modified by SlackBuilds.org project)
case $1 in
xfce4)
exec startxfce4
;;
icewm)
exec icewm-session
;;
wmaker)
exec wmaker
;;
blackbox)
exec blackbox
;;
*)
exec twm
;;
esac
|