Hello all,
I am running Artix runit, and I really want to get pipewire working as a replacement for my audio. I saw others on this forum have gotten it to work, and I've followed the steps on the arch wiki, but I can't get audio with pipewire to work.
Here's what I've done:
sudo pacman -S pipewire pipewire-docs pipewire-alsa pipewire-pulse pipewire-jack
After that, I try to load it with this in my i3 config:
exec pipewire
Now, I don't know what else to do to get everything working. I want to be able to use qjackctl to manage connections, and use pulseaudio and jack applications at the same time. Pulse applications don't work at all, and I get no audio unless I start jack with qjackctl.
What applications do I need to start with my window manager to get things to work the way they should, including pulse?
see https://wiki.archlinux.org/index.php/PipeWire
for replace pulseadio you must after "pipewire" command run "pipewire-pulse" command too
i use small script for this for my KDE session:
[alois@picasso ]$ cat pipewire-pulse.sh
#!/bin/sh
/usr/bin/pipewire &
/usr/bin/pipewire-pulse
Hi, I am running the Plasma version and just wanted to chime in to say that i had to add "/usr/bin/pipewire-media-session" to the script. However there is a problem: even setting this script to be automatically executed on startup , some times it is not, because I see the volume icon off and there is no sound. I have to reboot the system to get it working :o
#!/bin/sh
/usr/bin/pipewire &
/usr/bin/pipewire-pulse &
/usr/bin/pipewire-media-session
pipewire have sometimes problems with Plasma...
In my opinion, pipewire is not finished enough yet. Personally, I switched back to pulseaudio, due similar problems
It could be a problem of timing, eg your volume icon starts sooner than pipewire is fully ready.
Since I use openbox I put some sleep commands between the pipewire ones and my volume icon.
But pipewire seems to have even more problems than PulseAudio.