2022-01-04 23:51:41 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2022 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
# This script will attempt to disable pipewire as the default audio server,
|
|
|
|
# changing it back to pulseaudio.
|
|
|
|
|
Wed Jan 5 20:09:37 UTC 2022
a/aaa_libraries-15.0-x86_64-12.txz: Rebuilt.
Upgraded: libcap.so.2.62, libelf-0.186.so, libzstd.so.1.5.1,
libcares.so.2.5.1, libexpat.so.1.8.2, libglib-2.0.so.0.7000.2,
libgmodule-2.0.so.0.7000.2, libgobject-2.0.so.0.7000.2,
libgthread-2.0.so.0.7000.2, libpcre2-8.so.0.10.4.
Added: libunwind.so.8.0.1 (thanks to Jeebizz).
a/kernel-generic-5.15.13-x86_64-1.txz: Upgraded.
a/kernel-huge-5.15.13-x86_64-1.txz: Upgraded.
a/kernel-modules-5.15.13-x86_64-1.txz: Upgraded.
d/doxygen-1.9.3-x86_64-2.txz: Rebuilt.
Fix manpage versions, build and install docs. Thanks to duncan_roe.
d/kernel-headers-5.15.13-x86-1.txz: Upgraded.
k/kernel-source-5.15.13-noarch-1.txz: Upgraded.
l/libuv-1.43.0-x86_64-1.txz: Upgraded.
l/pipewire-0.3.43-x86_64-1.txz: Upgraded.
Remove redundant .sample files on package upgrade.
When disabling pipewire, toss the .desktop files and keep the .sample files
if both exist.
Added missing X-KDE-autostart-phase=1 to pipewire-pulse.desktop.sample.
Thanks to ZhaoLin1457.
n/curl-7.81.0-x86_64-1.txz: Upgraded.
x/fcitx-qt5-1.2.7-x86_64-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
2022-01-05 21:09:37 +01:00
|
|
|
# Remove or rename the XDG autostart files:
|
2023-04-14 00:25:18 +02:00
|
|
|
for file in /etc/xdg/autostart/wireplumber.desktop /etc/xdg/autostart/pipewire-pulse.desktop /etc/xdg/autostart/pipewire.desktop ; do
|
Wed Jan 5 20:09:37 UTC 2022
a/aaa_libraries-15.0-x86_64-12.txz: Rebuilt.
Upgraded: libcap.so.2.62, libelf-0.186.so, libzstd.so.1.5.1,
libcares.so.2.5.1, libexpat.so.1.8.2, libglib-2.0.so.0.7000.2,
libgmodule-2.0.so.0.7000.2, libgobject-2.0.so.0.7000.2,
libgthread-2.0.so.0.7000.2, libpcre2-8.so.0.10.4.
Added: libunwind.so.8.0.1 (thanks to Jeebizz).
a/kernel-generic-5.15.13-x86_64-1.txz: Upgraded.
a/kernel-huge-5.15.13-x86_64-1.txz: Upgraded.
a/kernel-modules-5.15.13-x86_64-1.txz: Upgraded.
d/doxygen-1.9.3-x86_64-2.txz: Rebuilt.
Fix manpage versions, build and install docs. Thanks to duncan_roe.
d/kernel-headers-5.15.13-x86-1.txz: Upgraded.
k/kernel-source-5.15.13-noarch-1.txz: Upgraded.
l/libuv-1.43.0-x86_64-1.txz: Upgraded.
l/pipewire-0.3.43-x86_64-1.txz: Upgraded.
Remove redundant .sample files on package upgrade.
When disabling pipewire, toss the .desktop files and keep the .sample files
if both exist.
Added missing X-KDE-autostart-phase=1 to pipewire-pulse.desktop.sample.
Thanks to ZhaoLin1457.
n/curl-7.81.0-x86_64-1.txz: Upgraded.
x/fcitx-qt5-1.2.7-x86_64-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
2022-01-05 21:09:37 +01:00
|
|
|
if [ -r ${file}.sample ]; then
|
|
|
|
rm -f $file
|
|
|
|
elif [ -r $file ]; then
|
2022-01-04 23:51:41 +01:00
|
|
|
mv ${file} ${file}.sample
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Enable pulseaudio.desktop:
|
|
|
|
if grep -q "^Hidden=true$" /etc/xdg/autostart/pulseaudio.desktop ; then
|
|
|
|
grep -v "^Hidden=true$" /etc/xdg/autostart/pulseaudio.desktop > /etc/xdg/autostart/pulseaudio.desktop.new
|
|
|
|
mv /etc/xdg/autostart/pulseaudio.desktop.new /etc/xdg/autostart/pulseaudio.desktop
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Edit /etc/pulse/client.conf to enable autospawn:
|
|
|
|
sed -i "s/autospawn = no/autospawn = yes/g" /etc/pulse/client.conf
|
|
|
|
sed -i "s/allow-autospawn-for-root = no/allow-autospawn-for-root = yes/g" /etc/pulse/client.conf
|
|
|
|
|
|
|
|
echo "Pulseaudio enabled as system audio server."
|
|
|
|
if ps ax | grep -q pipewire ; then
|
|
|
|
echo
|
|
|
|
echo "You may need to stop running daemon/pipewire processes."
|
|
|
|
echo "The clean way is to run these commands as the user that owns the processes:"
|
|
|
|
echo "/usr/bin/daemon --pidfiles=~/.run --name=pipewire --stop"
|
2023-04-14 00:25:18 +02:00
|
|
|
echo "/usr/bin/daemon --pidfiles=~/.run --name=wireplumber --stop"
|
2022-01-04 23:51:41 +01:00
|
|
|
echo "/usr/bin/daemon --pidfiles=~/.run --name=pipewire-pulse --stop"
|
|
|
|
echo
|
|
|
|
echo "The quick and dirty way if nothing else on the machine is using the daemon"
|
|
|
|
echo "utility is to issue this command:"
|
|
|
|
echo "killall daemon"
|
|
|
|
fi
|