From 69255e617abd0d063240d11f975b2fecf94d758e Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 29 Nov 2021 10:44:16 +0100 Subject: [PATCH] zshrc: do not unconditionally overwrite $COLORTERM Some terminal emulators set COLORTERM=truecolor, do not overwrite those. Closes: #131 --- etc/zsh/zshrc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 773c57a..8ac9d7d 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3312,7 +3312,14 @@ zrcautoload lookupinit && lookupinit # variables # set terminal property (used e.g. by msgid-chooser) -export COLORTERM="yes" +case "${COLORTERM}" in + truecolor) + # do not overwrite + ;; + *) + export COLORTERM="yes" + ;; +esac # aliases -- 2.1.4