7 lines
208 B
Plaintext
7 lines
208 B
Plaintext
|
emulate sh -c 'source /etc/profile'
|
||
|
|
||
|
# if systemctl -q is-active graphical.target && [[ ! $DISPLAY && "$(tty)" = "/dev/tty1" ]]; then
|
||
|
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||
|
exec startx
|
||
|
fi
|