From fc92da2bcfda7ee2d917f93c98c806976d0529c3 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 28 Apr 2024 21:26:48 -0500 Subject: [PATCH] Update temp.inc.sh --- inc/temp.inc.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc/temp.inc.sh b/inc/temp.inc.sh index 2d17e31e..6b07dd0b 100644 --- a/inc/temp.inc.sh +++ b/inc/temp.inc.sh @@ -417,7 +417,9 @@ CHECKTEMP(){ echo -e "${idsCL[Default]}" fi fi - ([ "${TTYPE}" == "fans" ] && [ "${SENSOR}" == "iDS-vMS-Host6" ]) && echo -e "${idsCL[LightYellow]}${SENSOR} PSU is not compatible, Fans are instead synced with 'iDS-vMS-Host7'${idsCL[Default]}" + + elif [ "${TTYPE}" == "fans" ] && [ "${SENSOR}" == "iDS-vMS-Host6" ]; then + echo -e "${idsCL[LightYellow]}${SENSOR} PSU is not compatible, Fans are instead synced with 'iDS-vMS-Host7'${idsCL[Default]}" fi ((t++)) done