From 899a9cf6c45900b9b44975d24fcbfab1345912c4 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 20 Nov 2023 12:45:37 +0100 Subject: [PATCH] fix: Ignore casing --- src/display.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.sh b/src/display.sh index 3e6f758..237b184 100644 --- a/src/display.sh +++ b/src/display.sh @@ -5,7 +5,7 @@ set -Eeuo pipefail : ${DISPLAY:='none'} # Display type -case "$DISPLAY" in +case "${DISPLAY,,}" in vnc) DISPLAY_OPTS="-nographic -vga std -vnc :0" ;;