Changes between Version 5 and Version 6 of pipewire


Ignore:
Timestamp:
07/11/2023 06:18:00 AM (12 months ago)
Author:
pierre
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pipewire

    v5 v6  
    2020}}}
    2121
    22 With Wireplumber we can run Pipewire daemon with
     22Pipewire itself must be built with wireplumber support, so use the option
     23{{{
     24-Dsession-managers=/usr/bin/wireplumber
     25}}}
     26after building wireplumber.
    2327
     28With Wireplumber we can run Pipewire daemon with:
     29
     30- On systemd:
    2431{{{
    2532sudo systemctl --global enable pipewire
    2633systemctl --user start pipewire
    2734}}}
     35
     36- On SysV (solution by Douglas Reno, adapted from Alpine linux):[[BR]]
     37  As root:
     38{{{
     39cat >/usr/bin/pipewire-launcher.sh <<EOF
     40#!/bin/sh
     41exec /usr/bin/pipewire &
     42sleep 1
     43exec /usr/bin/wireplumber &
     44EOF
     45chmod +x /usr/bin/pipewire-launcher.sh
     46cat >/etc/xdg/autostart/pipewire.desktop <<EOF
     47[Desktop Entry]
     48Version=1.0
     49Name=Pipewire
     50Comment=Starts the Pipewire daemons
     51Exec=/usr/bin/pipewire-launcher.sh
     52Terminal=false
     53Type=Application
     54EOF
     55}}}
     56  then restart the graphical session.
    2857
    2958The screen recorder built-in GNOME shell should work now.