From c43a3f76ce1d8ffc2f08680004dc7afe9085f046 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 2 Feb 2024 17:58:29 +0100 Subject: [PATCH] Update display.sh --- src/display.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/display.sh b/src/display.sh index 60a519f..36cf4af 100644 --- a/src/display.sh +++ b/src/display.sh @@ -8,11 +8,14 @@ set -Eeuo pipefail case "${DISPLAY,,}" in vnc) - DISPLAY_OPTS="-display vnc=:0 -device $VGA" + DISPLAY_OPTS="-display vnc=:0 -device virto-gpu" ;; web) - DISPLAY_OPTS="-display vnc=:0,websocket=5700 -device $VGA" + DISPLAY_OPTS="-display vnc=:0,websocket=5700 -device virto-gpu" ;; + boot) + DISPLAY_OPTS="-display vnc=:0,websocket=5700 -device ramfb" + ;; none) DISPLAY_OPTS="-display none" ;;