From 82f0a0b843a04feea7e7dfe85510cf36e0b2ba4b Mon Sep 17 00:00:00 2001 From: Nick Logozzo Date: Sun, 24 Aug 2025 11:22:57 -0400 Subject: [PATCH] fix: `Autopause` for `docker` --- README.md | 3 +-- bin/winapps | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b548f7b..cc9b321 100644 --- a/README.md +++ b/README.md @@ -419,8 +419,7 @@ DEBUG="true" # [AUTOMATICALLY PAUSE WINDOWS] # NOTES: -# - This is currently INCOMPATIBLE with 'docker' and 'manual'. -# - See https://github.com/dockur/windows/issues/674 +# - This is currently INCOMPATIBLE with 'manual'. # DEFAULT VALUE: 'off' # VALID VALUES: # - 'on' diff --git a/bin/winapps b/bin/winapps index 5b8111e..d292f03 100755 --- a/bin/winapps +++ b/bin/winapps @@ -707,7 +707,7 @@ function waCheckIdle() { local SUSPEND_WINDOWS=0 # Prevent 'autopause' functionality with unsupported Windows backends. - if [ "$WAFLAVOR" != "manual" ] && [ "$WAFLAVOR" != "docker" ]; then + if [ "$WAFLAVOR" != "manual" ]; then # Check if there are no WinApps-related FreeRDP processes running. if ! ls "$APPDATA_PATH"/FreeRDP_Process_*.cproc &>/dev/null; then SUSPEND_WINDOWS=1