This commit is contained in:
Bart Sjerps
2026-04-20 10:00:31 +02:00
parent b505ef9dca
commit b14134c56c
12 changed files with 135 additions and 21 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/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