mirror of
https://github.com/winapps-org/winapps.git
synced 2025-08-06 02:38:26 +02:00
Updated configuration file template and git clone command in README + Added checks for new Windows backend introduced in #204
This commit is contained in:
47
bin/winapps
47
bin/winapps
@@ -626,29 +626,32 @@ function waCheckIdle() {
|
||||
local TIME_ELAPSED=0
|
||||
local SUSPEND_WINDOWS=0
|
||||
|
||||
# Check if there are no WinApps-related FreeRDP processes running.
|
||||
if ! ls "$APPDATA_PATH"/FreeRDP_Process_*.cproc &>/dev/null; then
|
||||
SUSPEND_WINDOWS=1
|
||||
while (( TIME_ELAPSED < AUTOPAUSE_TIME )); do
|
||||
if ls "$APPDATA_PATH"/FreeRDP_Process_*.cproc &>/dev/null; then
|
||||
SUSPEND_WINDOWS=0
|
||||
break
|
||||
fi
|
||||
sleep $TIME_INTERVAL
|
||||
TIME_ELAPSED=$((TIME_ELAPSED + TIME_INTERVAL))
|
||||
done
|
||||
fi
|
||||
# Prevent 'autopause' functionality with unsupported Windows backends.
|
||||
if [ "$WAFLAVOR" != "manual" ] && [ "$WAFLAVOR" != "docker" ]; then
|
||||
# Check if there are no WinApps-related FreeRDP processes running.
|
||||
if ! ls "$APPDATA_PATH"/FreeRDP_Process_*.cproc &>/dev/null; then
|
||||
SUSPEND_WINDOWS=1
|
||||
while (( TIME_ELAPSED < AUTOPAUSE_TIME )); do
|
||||
if ls "$APPDATA_PATH"/FreeRDP_Process_*.cproc &>/dev/null; then
|
||||
SUSPEND_WINDOWS=0
|
||||
break
|
||||
fi
|
||||
sleep $TIME_INTERVAL
|
||||
TIME_ELAPSED=$((TIME_ELAPSED + TIME_INTERVAL))
|
||||
done
|
||||
fi
|
||||
|
||||
# Hibernate/Pause Windows.
|
||||
if [ "$SUSPEND_WINDOWS" -eq 1 ]; then
|
||||
dprint "IDLE FOR ${AUTOPAUSE_TIME} SECONDS. SUSPENDING WINDOWS."
|
||||
notify-send --expire-time=8000 --icon="info" --app-name="WinApps" --urgency="low" "WinApps" "Pausing Windows due to inactivity."
|
||||
if [ "$WAFLAVOR" = "docker" ]; then
|
||||
docker compose --file "$COMPOSE_PATH" pause &>/dev/null
|
||||
elif [ "$WAFLAVOR" = "podman" ]; then
|
||||
podman-compose --file "$COMPOSE_PATH" pause &>/dev/null
|
||||
elif [ "$WAFLAVOR" = "libvirt" ]; then
|
||||
virsh suspend "$VM_NAME" &>/dev/null
|
||||
# Hibernate/Pause Windows.
|
||||
if [ "$SUSPEND_WINDOWS" -eq 1 ]; then
|
||||
dprint "IDLE FOR ${AUTOPAUSE_TIME} SECONDS. SUSPENDING WINDOWS."
|
||||
notify-send --expire-time=8000 --icon="info" --app-name="WinApps" --urgency="low" "WinApps" "Pausing Windows due to inactivity."
|
||||
if [ "$WAFLAVOR" = "docker" ]; then
|
||||
docker compose --file "$COMPOSE_PATH" pause &>/dev/null
|
||||
elif [ "$WAFLAVOR" = "podman" ]; then
|
||||
podman-compose --file "$COMPOSE_PATH" pause &>/dev/null
|
||||
elif [ "$WAFLAVOR" = "libvirt" ]; then
|
||||
virsh suspend "$VM_NAME" &>/dev/null
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
Reference in New Issue
Block a user