dotfiles/.xinitrc
2016-10-30 12:09:31 +01:00

14 lines
257 B
Text
Executable file

[ -f ~/.xprofile ] && . ~/.xprofile
DEFAULT_SESSION=qtile
[[ ":$PATH:" == *":$HOME/bin:"* ]] || export PATH="$HOME/bin:$PATH"
case "$1" in
awesome)
exec awesome
;;
qtile)
exec qtile 2>/tmp/qtile.err.log
;;
*) exec $DEFAULT_SESSION ;;
esac