13 lines
328 B
Bash
13 lines
328 B
Bash
# Better colors for dark themes
|
|
# https://dev.to/fernand0/better-colors-for-ls-in-dark-terminals-3d6
|
|
# https://github.com/seebi/dircolors-solarized
|
|
|
|
COLORS_FILE="$LWS/conf/dircolors.ansi-light"
|
|
|
|
if [[ -f "$COLORS_FILE" ]]; then
|
|
xlog "Loading colors $COLORS_FILE"
|
|
eval "$(dircolors "$COLORS_FILE")"
|
|
fi
|
|
|
|
unset COLORS_FILE
|