10 lines
257 B
Bash
10 lines
257 B
Bash
# .zprofile
|
|
# sourced by zsh when used as a login shell
|
|
|
|
# Uncomment below to autologin startx
|
|
# also see comments in ~/.xinitrc for more info
|
|
|
|
if [[ -z $DISPLAY ]] && [[ -n $XDG_VTNR ]] && [[ $XDG_VTNR -eq 1 ]]; then
|
|
exec startx -- vt1 &> /dev/null
|
|
fi
|