diff options
| -rw-r--r-- | config/essentials/zsh/aliases.sh | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/config/essentials/zsh/aliases.sh b/config/essentials/zsh/aliases.sh index 0c7c1ac..6df28e3 100644 --- a/config/essentials/zsh/aliases.sh +++ b/config/essentials/zsh/aliases.sh @@ -50,7 +50,8 @@ alias pf='profanity'  alias arduino-cli='arduino-cli --config-file $XDG_CONFIG_HOME/arduino15/arduino-cli.yaml' -if [ -x /usr/bin/dircolors ]; then +if [ -x /usr/bin/dircolors ] || [ -x $HOME/../usr/bin/dircolors ] +then      test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"      # alias ls='ls -h --color --group-directories-first'      #alias dir='dir --color=auto'  | 
