diff --git a/.profile b/.profile new file mode 100644 index 0000000..b4cfd27 --- /dev/null +++ b/.profile @@ -0,0 +1,11 @@ + +ENVIRONMENTD="$HOME/.config/environment.d" +set -a +if [ -d "$ENVIRONMENTD" ]; then + for conf in $(/usr/bin/ls "$ENVIRONMENTD"/*.conf) + do + . "$conf" + done +fi +set +a +