summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2023-11-28 08:20:25 -0800
committerTyler Davis <tyler@gluecode.net>2023-11-28 08:20:25 -0800
commit7c60573697f5d1439ba76a7d508757945bfd53b2 (patch)
treeb1fc67e98fbab78f886c9e319ac13832f6b5fab7 /.profile
parentb61a6dd21cd2e8942eaefef4b470115821aecd7a (diff)
downloaddotfiles-7c60573697f5d1439ba76a7d508757945bfd53b2.tar.gz
dotfiles-7c60573697f5d1439ba76a7d508757945bfd53b2.zip
sh: handle situations where exa remains installed
Diffstat (limited to '.profile')
-rw-r--r--.profile3
1 files changed, 3 insertions, 0 deletions
diff --git a/.profile b/.profile
index 71ec706..e6a1ff8 100644
--- a/.profile
+++ b/.profile
@@ -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