#!/bin/sh
#
# ~/.xinitrc - Executed by startx (run your window manager from here)
#
# The following variable defines the session which is started if the user
# doesn't explicitly select a session.
DEFAULT_SESSION=openbox-session
case $1 in
gnome) exec gnome-session
;;
kde) exec startkde
;;
openbox) exec openbox-session
;;
xfce) exec startxfce4
;;
*) exec $DEFAULT_SESSION
;;
esac