Pipewire daemon without systemctl (needed it this recently):

# In cat ~/.config/pulse/client.conf, set: # autospawn = no pid=$(pidof pulseaudio) && kill "$pid" setsid bash -c ' pipewire & PIPEWIRE_PID=$! wireplumber & pipewire-pulse & wait $PIPEWIRE_PID ' > /dev/null 2>&1 & disown

#linux #pipewire #note