dotfiles/dot_zprofile
2020-05-06 21:20:04 -05:00

12 lines
231 B
Bash

export PATH="$HOME/.cargo/bin:$PATH"
# if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then exec startx; fi
if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]
then
export MOZ_ENABLE_WAYLAND=1
exec sway
fi
# vim: set ft=zsh :