aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/ls.sh
blob: b125b02e503c203720f941864b68782c545590e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Define and store appropriate colors for ls
if command -v dircolors >/dev/null 2>&1 ; then
    if [ -r "$HOME"/.dircolors ] ; then
        eval "$(dircolors --sh "$HOME"/.dircolors)"
    else
        eval "$(dircolors --sh)"
    fi
fi