forked from pub-solar/os
5fb8b0b1fa
configurations COPYING flake.lock flake.nix lib local pkgs profiles README.md secrets users output to PAGER
7 lines
137 B
Plaintext
7 lines
137 B
Plaintext
# pipe exa into PAGER with colors
|
|
if [[ -t 1 && -n $PAGER ]]; then
|
|
@exa@/bin/exa --color always $@ | $PAGER
|
|
else
|
|
@exa@/bin/exa $@
|
|
fi
|