dotfiles/.zprofile

11 lines
257 B
Plaintext
Raw Normal View History

2019-10-03 21:28:01 +00:00
emulate sh -c '. ~/.profile'
2024-10-17 09:41:57 +00:00
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
# Start X automatically
if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
exec startx
fi