1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00

check for Actually Portable lr.com as a fallback

This commit is contained in:
Connor Olding 2022-09-01 18:28:56 -07:00
parent 1d0667c52b
commit 4e1ed7d0d8

View File

@ -148,6 +148,8 @@ alias earm='ea delete' ### @- invoke [`ea delete`.](#ea)
### @ ll - list files verbosely, fancily, ordered, but not recursively.
if has lr; then
alias ll='ify less lr -1lshGG -o tev'
elif has lr.com; then # https://eaguru.guru/t/lr.com
alias ll='ify less lr.com -1lshGG -o tuev'
else
alias ll='ify less ls -lAX --group-directories-first --color=force'
fi