#!/bin/sh # # ~/.xinitrc, a copy of /etc/skel/.xinitrc # if [ -f ~/.Xresources ]; then xrdb -merge ~/.Xresources fi if [ -f ~/.Xmodmap ]; then xmodmap ~/.Xmodmap fi if [ -d /etc/X11/xinit/xinitrc.d ] ; then for f in /etc/X11/xinit/xinitrc.d/*.sh ; do [ -x "$f" ] && . "$f" done unset f fi CK_LAUNCH_SESSION= if [ -z "$XDG_SESSION_COOKIE" ] && [ -x /usr/bin/ck-launch-session ]; then CK_LAUNCH_SESSION="/usr/bin/ck-launch-session" fi # start the Window Manger session of your choice #exec $CK_LAUNCH_SESSION gnome-session #exec $CK_LAUNCH_SESSION startkde #exec $CK_LAUNCH_SESSION startxfce4 #exec $CK_LAUNCH_SESSION startfluxbox