#!/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