cfg/.xprofile

9 lines
204 B
Text
Raw Permalink Normal View History

2024-09-23 14:52:11 +00:00
#!/usr/bin/env bash
set -eo pipefail
2024-09-23 14:52:11 +00:00
[[ -d ${HOME}/.xprofile.d ]] && {
for lc in $(find ${HOME}/.xprofile.d -name '*.zsh' -o -name '*.sh'); do
[[ -e $lc ]] && source ${lc} || true
done
} || true