From 85a7529b4e029fcac941ad8cfae55840eb72003a Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 14 Jul 2026 23:56:00 +0200 Subject: [PATCH] feat: Close audio stream during shutdown (#1853) --- src/power.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/power.sh b/src/power.sh index 6b32400..0aaaf01 100644 --- a/src/power.sh +++ b/src/power.sh @@ -164,8 +164,10 @@ markWindowsBooted() { cleanupHelpers() { - local pids=( "${SMB_PID:-}" "${NMB_PID:-}" "${DDN_PID:-}" "${TPM_PID:-}" "${WSD_PID:-}" \ - "${WEB_PID:-}" "${PASST_PID:-}" "${DNSMASQ_PID:-}" "${BALLOONING_PID:-}" ) + local pids=( "${SMB_PID:-}" "${NMB_PID:-}" "${DDN_PID:-}" \ + "${TPM_PID:-}" "${WSD_PID:-}" "${WEB_PID:-}" \ + "${AUX_PID:-}" "${AUDIO_PID:-}" "${PASST_PID:-}" \ + "${DNSMASQ_PID:-}" "${BALLOONING_PID:-}" ) mKill "${pids[@]}"