ambevar-dotfiles/.xinitrc

29 lines
855 B
Plaintext
Raw Normal View History

#!/bin/sh
## Run site init scripts. Usually not necessary.
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
## Source environment config.
[ -f ~/.xprofile ] && . ~/.xprofile
## Launch session
2014-04-21 19:59:45 +02:00
if [ $# -eq 1 ] && command -v $1 >/dev/null 2>&1; then
exec $1
2013-10-12 16:01:11 +02:00
else
exec awesome
2013-10-12 16:01:11 +02:00
fi
## TODO: When the session is terminated, some forked processes must be closed
## manually. This can automated by setting a shell 'trap' in .profile when
## logged from a TTY. The trick does not work from an X login manager. This file
## could be the place where to clean everything, but it will not be parsed by
## some login managers. Beside, systemd sessions may sigkill all user apps on
## logoff, preventing a clean termination.
2014-08-21 10:41:47 +02:00
# command -v sessionclean >/dev/null 2>&1 && sessionclean
2014-03-04 10:25:42 +01:00