From f4ddfa7e3e91ffde12940378f735237abdba08c5 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Sat, 25 Mar 2023 16:04:29 -0400 Subject: [PATCH] Add logging --- dot_local/bin/executable_pipewire-launcher | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dot_local/bin/executable_pipewire-launcher b/dot_local/bin/executable_pipewire-launcher index ed76330..a6a2550 100644 --- a/dot_local/bin/executable_pipewire-launcher +++ b/dot_local/bin/executable_pipewire-launcher @@ -9,7 +9,8 @@ while pgrep -u $UID -x pipewire >/dev/null; do sleep 1; done while pgrep -u $UID -x pipewire-pulse >/dev/null; do sleep 1; done # Launch pipewire -/usr/bin/wireplumber & -/usr/bin/pipewire & -/usr/bin/pipewire-pulse & +echo "---" | tee -a /tmp/{wireplumber.log,pipewire.log,pipewire-pulse.log} +/usr/bin/wireplumber 2>&1 | tee -a /tmp/wireplumber.log & disown +/usr/bin/pipewire 2>&1 | tee -a /tmp/pipewire.log & disown +/usr/bin/pipewire-pulse 2>&1 | tee -a /tmp/pipewire-pulse.log & disown