suckless-utils/slim/xinitrc.sample

24 lines
308 B
Plaintext
Raw Normal View History

# the following variable defines the session which is started if the user
# doesn't explicitly 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