about summary refs log tree commit diff stats
path: root/bash/dircolors.bash
blob: 10967ecd13a96c74ee71e5c18f7f217b3de3e13f (plain)
1
2
3
4
5
DIRCOLORS="${XDG_CONFIG_HOME:-$HOME/.config/dircolors}"

if [ -f "$DIRCOLORS" ]; then
    eval $(dircolors --sh "$DIRCOLORS");
fi