14 lines
298 B
Bash
14 lines
298 B
Bash
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export TERMINAL="/usr/bin/alacritty"
|
|
export EDITOR="/usr/bin/nvim"
|
|
|
|
# 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 :
|