diff --git a/profile.d/path b/profile.d/path index 43fe3e8..2613629 100644 --- a/profile.d/path +++ b/profile.d/path @@ -1,5 +1,8 @@ #!/bin/bash # Customize PATH +if [ -d $HOME/.bin ] ; then export PATH=$PATH:$HOME/.bin ; fi +if [ -d $HOME/.local/bin ] ; then export PATH=$PATH:$HOME/.local/bin ; fi + if [ -d $HOME/bin ] ; then export PATH=$PATH:$HOME/bin ; fi if [ -d $HOME/scripts ] ; then export PATH=$PATH:$HOME/scripts ; fi