8 lines
204 B
Bash
Executable file
8 lines
204 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eo 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
|