X-Git-Url: https://git.donarmstrong.com/?p=home-base.git;a=blobdiff_plain;f=.bashrc;h=fb14d9598ad41445a791e97728b212f31b93835d;hp=602d3a810fda11412ce1b9b3588a1db788dc3d29;hb=ca7a5a576fdfca91c587c6587242737bb89ade3a;hpb=ca52198c2318b392a82f2d1fe5f9c786ab480c88 diff --git a/.bashrc b/.bashrc index 602d3a8..fb14d95 100644 --- a/.bashrc +++ b/.bashrc @@ -25,6 +25,7 @@ if [ "$PS1" ]; then fi; export DEBEMAIL="don@debian.org" + export DEBHOME="$(eval 'echo' '~/projects/debian')" # enable color support of ls and also add handy aliases eval `dircolors -b` @@ -103,7 +104,8 @@ if [ "$PS1" ]; then fi; # set up ssh-agent - if which ssh-agent >/dev/null && [ -d ~/.ssh ]; then + if which ssh-agent >/dev/null && [ -d ~/.ssh ] && \ + [ -z "$SSH_CONNECTION" ] && [ -z "$SSH_CLIENT" ]; then # for if [ -e ~/.ssh/ssh_agent_info ] && \ [ -n "$(awk -F '[=;]' '/^SSH_AGENT_PID/{print $2}' ~/.ssh/ssh_agent_info)" ] && \ @@ -125,7 +127,13 @@ if [ "$PS1" ]; then LANG=C fi; export LANG - export PATH="~/bin:$PATH" + + # If we're running on liszt, include /var/list/.bin in the path + if [ "$(hostname)" == "liszt" ] && [ -d /var/list/.bin ]; then + PATH="/var/list/.bin:$PATH" + fi; + export PATH="$(getent passwd $(id -u)|awk -F: '{print $6}')/bin:$PATH" + if [ ! -e ~/tmp ]; then mkdir ~/tmp; fi;