6 lines
179 B
Bash
6 lines
179 B
Bash
# .zprofile
|
|
# sourced by zsh when used as a login shell
|
|
|
|
# automatically run startx when logging in on tty1
|
|
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx -- vt1 &>/dev/null
|