Added script in rc.d to auto launch startx on tty{1,2,3}

This commit is contained in:
Xavier Logerais 2017-05-18 11:53:30 +02:00
parent c44365c6c5
commit 609f5cd7ee

25
rc.d/startx Normal file
View File

@ -0,0 +1,25 @@
# Auto startx depending on the VT
if [[ -z "$DISPLAY" && $(id -u) -ge 1000 ]] ; then
TTY=$(tty)
if [ "${TTY/tty}" != "$TTY" -a $(basename ${TTY/tty}) -le 3 ]
then
case $(tty | cut -b9-) in
1) VT=vt1 ;;
2) VT=vt2 ;;
3) VT=vt3 ;;
esac
if ( which ck-launch-session &> /dev/null )
then
EXEC="exec ck-launch-session"
fi
if ( which startx &> /dev/null )
then
$EXEC startx 1> ~/.log/xsession-errors 2>&1 -- $VT
fi
fi
fi