From bbd9128cbf637acf2487aba7a1c7af6eec279298 Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 2 Oct 2025 17:08:47 +0200 Subject: [PATCH] feat: Add additional debug messages Add debugging message for configuring display drivers --- src/display.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/display.sh b/src/display.sh index 2affc00..9ee0af4 100644 --- a/src/display.sh +++ b/src/display.sh @@ -18,6 +18,10 @@ if [[ "$GPU" != [Yy1]* || "$CPU_VENDOR" != "GenuineIntel" || "$ARCH" != "amd64" fi +msg="Configuring display drivers..." +html "$msg" +[[ "$DEBUG" == [Yy1]* ]] && echo "$msg" + DISPLAY_OPTS="-display egl-headless,rendernode=$RENDERNODE" DISPLAY_OPTS+=" -vga $VGA"