From 8c7f9a75dbf8cdae6162c6035719437ae4248fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Trellu?= Date: Mon, 20 Nov 2023 20:58:13 -0500 Subject: [PATCH] [tui] Fix condition --- tui/features.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/features.sh b/tui/features.sh index 0602a643..b9dfd449 100644 --- a/tui/features.sh +++ b/tui/features.sh @@ -7,7 +7,7 @@ export FEATURE_GUI="false" export FEATURE_SKILLS="false" features=("skills" "$SKILL_DESCRIPTION" ON) -if [[ "$RASPBERRYPI_MODEL" != *"Raspberry Pi 3"* ]] || [[ "$KERNEL" != *"microsoft"* ]]; then +if [[ "$RASPBERRYPI_MODEL" != *"Raspberry Pi 3"* ]] || [[ "$KERNEL" == *"microsoft"* ]]; then features+=("gui" "$GUI_DESCRIPTION" OFF) fi