1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

feat(zsh): new arch desktop config

This commit is contained in:
Ryan Kes 2021-03-13 15:34:46 +01:00
parent 60659674a0
commit 36703e763e

View File

@ -18,18 +18,14 @@ path_if_exists ~/.local/share/cargo/bin
export GPG_TTY="$(tty)"
# Set default browser
if [ -e "/usr/bin/brave" ]; then
if [ -e "/sbin/brave" ]; then
export BROWSER="brave"
else
if [ -e "/usr/bin/firefox" ]; then
elif [ -e "/sbin/firefox" ]; then
export BROWSER="firefox"
elif [ -e "/usr/bin/iceweasel" ]; then
export BROWSER="iceweasel"
fi
fi
# Set default terminal
export TERMINAL="alacritty"
export TERMINAL="st"
# pkg editor
export VISUAL="nvim"