dotfiles/zsh/.zprofile

7 lines
208 B
Plaintext
Raw Normal View History

2021-10-29 09:31:34 +02:00
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