ambevar-dotfiles/.xinitrc

32 lines
996 B
Plaintext
Raw Normal View History

#!/bin/sh
## WARNING: If started from TTY on a multi-seat, the user must run 'startx &
## vlock' to ensure the X locker cannot be bypassed.
## 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.
# ssh-agent -k
## See if exec'ing "ssh-agent <WM>" is a better idea.