5 lines
117 B
Text
5 lines
117 B
Text
# startx automatically if on first tty
|
|
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
|
startx
|
|
logout
|
|
fi
|