From 9b34886a5ae3f97afa343f4e735e0ff4a6584215 Mon Sep 17 00:00:00 2001 From: Traktuner <78533119+traktuner@users.noreply.github.com> Date: Tue, 13 Feb 2024 06:02:35 +0100 Subject: [PATCH] fix typo and wording --- startapp.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/startapp.sh b/startapp.sh index 86f04a2..10a58d5 100644 --- a/startapp.sh +++ b/startapp.sh @@ -39,16 +39,16 @@ done # Set Virtual Desktop cd $WINEPREFIX if [ "$DISABLE_VIRTUAL_DESKTOP" = "true" ]; then + log_message "WINE: DISABLE_VIRTUAL_DESKTOP=true - Virtual Desktop mode will be disabled" winetricks vd=off - log_message "WINE: Virtual Desktop mode disabled" else - # Check if with and height are defined + # Check if width and height are defined if [ -n "$DISPLAY_WIDTH" ] && [ -n "$DISPLAY_HEIGHT" ]; then log_message "WINE: Enabling Virtual Desktop mode with $DISPLAY_WIDTH:$DISPLAY_WIDTH aspect ratio" winetricks vd="$DISPLAY_WIDTH"x"$DISPLAY_HEIGHT" else # Default aspect ratio - log_message "WINE: Enable Virtual Desktop mode with recommended aspect ratio" + log_message "WINE: Enabling Virtual Desktop mode with recommended aspect ratio" winetricks vd="900x700" fi fi