%general-entities; ]> Wireplumber-&wireplumber-version; Wireplumber Introduction to Wireplumber The Wireplumber package contains a session and policy manager for Pipewire. &lfs120_checked; Package Information Download (HTTP): Download (FTP): Download MD5 sum: &wireplumber-md5sum; Download size: &wireplumber-size; Estimated disk space required: &wireplumber-buildsize; Estimated build time: &wireplumber-time; Wireplumber Dependencies Required , , and , and (runtime, rebuilt with ) Recommended Optional , , , , , and Breathe Installation of Wireplumber Install Wireplumber by running the following commands: mkdir build && cd build && meson setup --prefix=/usr --buildtype=release -Dsystem-lua=true .. && ninja To test the results, issue: ninja test. Now, as the root user: ninja install Command Explanations -Dsystem-lua=true: This switch enables using the system version of Lua. Omit this switch if you have not installed Lua, but note that meson will download and install it's own version. Configuring Wireplumber Configuration Information In order for Wireplumber to be used by Pipewire, Wireplumber must be configured to start when a desktop environment is started. To configure Wireplumber to start when a desktop environment is started, run the following commands as the &root; user to enable the systemd user units: systemctl enable --global pipewire.socket && systemctl enable --global wireplumber First, create a shell script that will start Wireplumber and Pipewire in the correct order as the &root; user: cat > /usr/bin/pipewire-launcher.sh << "EOF" #!/bin/sh # Begin /usr/bin/pipewire-launcher.sh # Start Pipewire first. exec /usr/bin/pipewire & # Wait for a second for Pipewire to launch. sleep 1 # Start Wireplumber now that Pipewire has been started. exec /usr/bin/wireplumber & # End /usr/bin/pipewire-launcher.sh EOF Next, make this shell script executable as the &root; user: chmod +x /usr/bin/pipewire-launcher.sh Finally, create an XDG Autostart file that will run /usr/bin/pipewire-launcher.sh when a desktop environment is started, as the &root; user: cat > /etc/xdg/autostart/pipewire.desktop << "EOF" [Desktop Entry] Version=1.0 Name=Pipewire Comment=Starts the Pipewire and Wireplumber daemons Exec=/usr/bin/pipewire-launcher.sh Terminal=false Type=Application EOF Now that Wireplumber is configured to start when a desktop environment is started, it is recommended that you log out of your session and log back in again. Contents Installed Programs Installed Libraries Installed Directories wireplumber, wpctl, and wpexec libwireplumber-0.4.so /usr/include/wireplumber-0.4, /usr/lib/wireplumber-0.4, and /usr/share/wireplumber Short Descriptions wireplumber is a session and policy manager for Pipewire wireplumber wpctl controls and queries information from Wireplumber wpctl wpexec executes Wireplumber scripts, which are often written in Lua wpexec libwireplumber-0.4.so contains functions that allow other programs to control Wireplumber libwireplumber-0.4.so