7 lines
213 B
Bash
7 lines
213 B
Bash
# items common to ~/.bash_profile and ~/.zprofile
|
|
|
|
[[ -x /usr/bin/vim ]] && export EDITOR="/usr/bin/vim"
|
|
|
|
if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
|
|
exec startx
|
|
fi
|