13 lines
389 B
Bash
13 lines
389 B
Bash
|
|
# activate ls colors, (private if possible)
|
|
if [[ -a $HOME/.dir_colors ]]; then
|
|
if [[ "$TERM" == *256* ]]; then
|
|
which dircolors > /dev/null && eval "`dircolors -b $HOME/.dir_colors`"
|
|
else
|
|
# standard colors for non-256-color terms
|
|
which dircolors > /dev/null && eval "`dircolors -b`"
|
|
fi
|
|
else
|
|
which dircolors > /dev/null && eval "`dircolors -b`"
|
|
fi
|
|
|