dotfiles/.xinitrc

15 lines
257 B
Text
Raw Normal View History

2013-03-23 14:54:07 +01:00
[ -f ~/.xprofile ] && . ~/.xprofile
2015-10-02 19:38:03 +02:00
DEFAULT_SESSION=qtile
[[ ":$PATH:" == *":$HOME/bin:"* ]] || export PATH="$HOME/bin:$PATH"
2013-03-23 14:54:07 +01:00
case "$1" in
2015-06-02 17:52:27 +02:00
awesome)
2013-03-23 14:54:07 +01:00
exec awesome
;;
2014-09-29 09:41:58 +02:00
qtile)
2015-10-02 19:53:20 +02:00
exec qtile 2>/tmp/qtile.err.log
2013-03-23 14:54:07 +01:00
;;
*) exec $DEFAULT_SESSION ;;
esac