This commit is contained in:
Rodolphe Breard 2013-03-23 14:54:07 +01:00
parent 14fe002d31
commit c9cb1e8390
3 changed files with 281 additions and 0 deletions

16
.xinitrc Executable file
View file

@ -0,0 +1,16 @@
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
DEFAULT_SESSION=awesome
case "$1" in
default|awesome|"")
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
xcompmgr &
/usr/bin/xscreensaver -no-splash &
exec awesome
;;
weston|weston-launch)
exec weston-launch
;;
*) exec $DEFAULT_SESSION ;;
esac