ambevar-dotfiles/.xinitrc

18 lines
415 B
Plaintext
Raw Normal View History

#!/bin/sh
## Source environment config.
[ -f ~/.xprofile ] && . ~/.xprofile
## Launch session
2014-08-21 10:41:47 +02:00
## Note: we do not 'exec' as we want to clean the session on exit.
2014-04-21 19:59:45 +02:00
if [ $# -eq 1 ] && command -v $1 >/dev/null 2>&1; then
$1
2013-10-12 16:01:11 +02:00
else
awesome
2013-10-12 16:01:11 +02:00
fi
2014-08-21 10:41:47 +02:00
## TODO: This is not needed since all forked processes will be killed anyway
## when 'exec' is not called. But why?
# command -v sessionclean >/dev/null 2>&1 && sessionclean
2014-03-04 10:25:42 +01:00