aboutsummaryrefslogtreecommitdiff
path: root/sh/profile
blob: 2999b119deef96c93b9f3c1ad7d92c6e7bfb578a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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
if [ -d "$HOME"/.profile.d ] ; then
    for profile in "$HOME"/.profile.d/*.sh ; do
        if [ -e "$profile" ] ; then
            . "$profile"
        fi
    done
    unset -v profile
fi