Files
Bart Sjerps b14134c56c update
2026-04-20 10:00:31 +02:00

14 lines
461 B
Bash

#!/bin/bash
# ===========================================================================
# Title : zz_nocolors.sh
# Description : Disable LS colors if /etc/nocolors exists
# Author : Bart Sjerps <bart@dirty-cache.com>
# License : GPLv3+
# ---------------------------------------------------------------------------
test -f /etc/nocolors || return
alias ls &>/dev/null && unalias ls
alias ll='ls -al '
alias l.='ls -d .* '
export S_COLORS=never