Files
dotfiles/.config/zsh/.zprofile

11 lines
257 B
Plaintext
Raw Normal View History

2019-10-03 23:28:01 +02:00
emulate sh -c '. ~/.profile'
2024-10-17 11:41:57 +02: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