Remove colors

This commit is contained in:
Loic Nageleisen 2024-02-12 19:10:08 +01:00
parent f3cb7d8f52
commit f37c1fcdf3
Signed by: lloeki
GPG key ID: D05DAEE6889F94C2

View file

@ -5,12 +5,12 @@ case "$OSTYPE" in
alias top="top -o cpu -s 5" alias top="top -o cpu -s 5"
;; ;;
*linux*) *linux*)
alias ls="ls --color" alias ls="ls --color=no"
;; ;;
esac esac
alias ll="ls -l" alias ll="ls -l"
alias tree="tree -C" alias tree="tree -n"
if command -v colordiff 2>&1 >/dev/null; then if command -v colordiff 2>&1 >/dev/null; then
alias diff="colordiff" alias diff="colordiff"
fi fi