From 15edbe62cb43e8a71051a1eb459181a8cbc976fc Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Sun, 22 Sep 2024 11:05:58 +0200 Subject: [PATCH] fix(eww): `get-volume` script now uses pipewire monitor Instead of the pulseaudio one --- bar/eww/scripts/get-volume | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bar/eww/scripts/get-volume b/bar/eww/scripts/get-volume index 1e6d202..1806222 100755 --- a/bar/eww/scripts/get-volume +++ b/bar/eww/scripts/get-volume @@ -7,6 +7,6 @@ volume (){ } volume -pactl subscribe | grep --line-buffered "'change'" | while read -r line; do +pw-mon --color=never | grep --line-buffered "changed" | while read -r line; do volume done