aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/ls.sh
blob: eec25eb760ed5fd1b0ade2c2d20a64069f5d2dab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Our ~/.profile should already have made a directory with the supported
# options for us; if not, we won't be wrapping ls(1) with a function at all
[ -d "$HOME"/.cache/ls ] || return

# Define function proper
ls() {

    # Add --color if the terminal has at least 8 colors
    [ -e "$HOME"/.cache/ls/color ] &&
    [ "$({ tput colors || tput Co ; } 2>/dev/null)" -ge 8 ] &&
        set -- --color=auto "$@"

    # Run ls(1) with the concluded arguments
    command ls "$@"
}