9 lines
205 B
Text
9 lines
205 B
Text
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
[[ -d ${HOME}/.xprofile.d ]] && {
|
||
|
for lc in $(find ${HOME}/.xprofile.d -name '*.zsh' -o -name '*.sh'); do
|
||
|
[[ -e $lc ]] && source ${lc} || true
|
||
|
done
|
||
|
} || true
|