Export BROWSER as well.

This commit is contained in:
David Tomaschik
2019-04-11 14:54:47 +02:00
parent a85a9c52be
commit b4db394761

View File

@@ -29,6 +29,15 @@ if [ -z "${TERMINAL}" ] ; then
done done
fi fi
# Browser preferences
if [ -z "${BROWSER}" ] ; then
for t in google-chrome-beta google-chrome firefox ; do
if BROWSER=$(command -v ${t}); then
export BROWSER
fi
done
fi
# For virtualenvwrapper # For virtualenvwrapper
export WORKON_HOME=$HOME/.virtualenvs export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages' export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'