From 688ea20708534d7f37a69f5b3adbc6cb90821d7c Mon Sep 17 00:00:00 2001 From: pony-montana <96387969+pony-montana@users.noreply.github.com> Date: Mon, 4 Jul 2022 04:27:18 +0200 Subject: [PATCH] fix wireplumber (#1134) As we see in the docs here: https://pipewire.pages.freedesktop.org/wireplumber/running-wireplumber-daemon.html#pipewire-conf we need to start wireplumber in replace of the old media session, not "wireplumber as server". (This is my first hecking commit ever !!!!!!!!!) --- .config/pipewire/pipewire.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/pipewire/pipewire.conf b/.config/pipewire/pipewire.conf index 2cc2cda..b8a3672 100644 --- a/.config/pipewire/pipewire.conf +++ b/.config/pipewire/pipewire.conf @@ -243,5 +243,5 @@ context.exec = [ # It can be interesting to start another daemon here that listens # on another address with the -a option (eg. -a tcp:4713). # - { path = "/usr/bin/wireplumber" args = "-c pipewire-pulse.conf" } + { path = "/usr/bin/pipewire" args = "-c pipewire-pulse.conf" } ]