diff options
author | Tyler Davis <tyler@gluecode.net> | 2023-11-28 08:20:25 -0800 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2023-11-28 08:20:25 -0800 |
commit | 7c60573697f5d1439ba76a7d508757945bfd53b2 (patch) | |
tree | b1fc67e98fbab78f886c9e319ac13832f6b5fab7 /.profile | |
parent | b61a6dd21cd2e8942eaefef4b470115821aecd7a (diff) | |
download | dotfiles-7c60573697f5d1439ba76a7d508757945bfd53b2.tar.gz dotfiles-7c60573697f5d1439ba76a7d508757945bfd53b2.zip |
sh: handle situations where exa remains installed
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -92,6 +92,9 @@ fi if [ "$(command -v eza)" ]; then alias ls='eza -G --color never -a -s type -F --time-style=long-iso' alias ll='eza -l --color never -a -s type -F --time-style=long-iso' +elif [ "$(command -v exa)" ]; then + alias ls='exa -G --color never -a -s type -F --time-style=long-iso' + alias ll='exa -l --color never -a -s type -F --time-style=long-iso' fi if [ "$(command -v bat)" ]; then |