dotfiles/dot_zprofile

18 lines
365 B
Bash

export PATH="$HOME/.cargo/bin:/usr/local/go/bin:$PATH"
export TERMINAL="/usr/bin/alacritty"
export EDITOR="/usr/bin/nvim"
export CUPS_SERVER="192.168.0.171:631"
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 :