config-bash/rc.d/lsd

11 lines
113 B
Bash

#!/bin/bash
if (which lsd &> /dev/null)
then
# create a aliases
alias ls='lsd'
alias lt='lsd --tree'
fi