11 lines
255 B
Bash
11 lines
255 B
Bash
emulate sh -c '. ~/.profile'
|
|
|
|
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 sway
|
|
fi
|