Schlimm is an attempt to create a fork of the SLiM desktop manager.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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
|