6 lines
101 B
Bash
Executable file
6 lines
101 B
Bash
Executable file
#Startx Automatically
|
|
|
|
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
|
|
startx
|
|
logout
|
|
fi
|