# Add ~/.local/bin to PATH if it exists if [ -d "$HOME"/.local/bin ] ; then PATH=$HOME/.local/bin:$PATH fi # Load all supplementary scripts in ~/.profile.d for profile in "$HOME"/.profile.d/*.sh ; do [ -e "$profile" ] || continue . "$profile" done unset -v profile # If the shell is interactive, and ~/.shrc exists, source that too case $- in *i*) [ -f "$HOME"/.shrc ] && . "$HOME"/.shrc ;; esac