aboutsummaryrefslogtreecommitdiff
path: root/sh/profile
blob: 483e0b5a6c6517126b5c07b616deaff3860c40c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# 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 _ in "$HOME"/.profile.d/*.sh ; do
        . "$_"
    done
fi