From 7b86adbc92f6bf47d3f24f715e6764144039b066 Mon Sep 17 00:00:00 2001 From: Andrea Rogers Date: Sat, 6 Jan 2024 05:35:19 -0600 Subject: [PATCH] profile.mac: Source .profile.d files --- .profile.mac | 6 ++++++ 1 file changed, 6 insertions(+) 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