From c2d03eb94057519d29c276e9bfbe639cc3dcccf4 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 2 Sep 2017 13:52:34 -0400 Subject: [PATCH] Add $HOME/.bin to PATH if it exists --- .profile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.profile b/.profile index cbc5236..fd965fd 100644 --- a/.profile +++ b/.profile @@ -11,6 +11,11 @@ export CALIBRE_USE_SYSTEM_THEME=true export WORDCHARS=${WORDCHARS/\//} export PAGER=less +# Add $HOME/.bin to PATH if it exists +if [[ -d "$HOME/.bin" ]]; then + export PATH="$PATH:$HOME/.bin" +fi + # Set temporary files locations if [[ ! -d "$TMPDIR" ]]; then export TMPDIR="/tmp/$LOGNAME"