removing weston and adding qtile

This commit is contained in:
Rodolphe Breard 2014-09-29 09:41:58 +02:00
parent d09b33127e
commit 497b599a12

View file

@ -1,17 +1,17 @@
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
/usr/bin/xcompmgr &
/usr/bin/xscreensaver -no-splash &
eval $(/usr/bin/gpg-agent --daemon --enable-ssh-support --write-env-file "${HOME}/.gpg-agent-info")
DEFAULT_SESSION=awesome
case "$1" in
default|awesome|"")
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
xcompmgr &
/usr/bin/xscreensaver -no-splash &
eval $(/usr/bin/gpg-agent --daemon --enable-ssh-support --write-env-file "${HOME}/.gpg-agent-info")
exec awesome
;;
weston|weston-launch)
exec weston-launch
qtile)
exec qtile
;;
*) exec $DEFAULT_SESSION ;;
esac