From 626ed9b0a01eb0ea97b8c8ea245de3d28517bc54 Mon Sep 17 00:00:00 2001 From: pony-montana <96387969+pony-montana@users.noreply.github.com> Date: Sun, 3 Jul 2022 15:07:59 +0000 Subject: [PATCH] fix wireplumber 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 2cc2cda5..b8a36725 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" } ]