9 lines
169 B
Text
9 lines
169 B
Text
function ls {
|
|
if [[ "${LS_PICKER}" == "lsd" ]]; then
|
|
lsd $@
|
|
elif [[ "${LS_PICKER}" == "exa" ]]; then
|
|
exa $@
|
|
else
|
|
/bin/ls $@
|
|
fi
|
|
}
|