about summary refs log tree commit diff stats
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/dircolors.bash6
1 files changed, 5 insertions, 1 deletions
diff --git a/bash/dircolors.bash b/bash/dircolors.bash index 597ee95..10967ec 100644 --- a/bash/dircolors.bash +++ b/bash/dircolors.bash
@@ -1 +1,5 @@
1eval $(dircolors --sh "${XDG_CONFIG_HOME:-$HOME/.config}/dircolors") 1DIRCOLORS="${XDG_CONFIG_HOME:-$HOME/.config/dircolors}"
2
3if [ -f "$DIRCOLORS" ]; then
4 eval $(dircolors --sh "$DIRCOLORS");
5fi