diff --git a/.profile.mac b/.profile.mac index 30f5933..d79738f 100644 --- a/.profile.mac +++ b/.profile.mac @@ -25,3 +25,9 @@ alias ls='ls -G' for af in $HOME/.aliases/*; do . "$af" done + +if [ -d "$HOME/.profile.d" ]; then + for pd in "$HOME/.profile.d"/*; do + . "$pd" + done +fi