dotfiles/dot_zprofile

13 lines
231 B
Text
Raw Normal View History

2020-05-07 02:20:04 +00:00
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 :