restore missed wire plumbering

This commit is contained in:
desolate
2026-06-01 13:17:41 +03:00
parent 556724c5b4
commit de54e28460
3 changed files with 34 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#!/bin/sh
if [ ! -d /etc/pipewire/pipewire.conf.d ]; then
sudo mkdir -p /etc/pipewire/pipewire.conf.d
fi
# Session Manager
if [ -e /etc/pipewire/pipewire.conf.d/10-wireplumber.conf ]; then
sudo ln -s /usr/share/examples/wireplumber/10-wireplumber.conf /etc/pipewire/pipewire.conf.d/
fi
# PulseAudio Interface
if [ -e /etc/pipewire/pipewire.conf.d/20-pipewire-pulse.conf ]; then
sudo ln -s /usr/share/examples/pipewire/20-pipewire-pulse.conf /etc/pipewire/pipewire.conf.d/
fi
# ALSA Integration
if [ ! -d /etc/alsa/conf.d ]; then
sudo mkdir -p /etc/alsa/conf.d
fi
if [ -e /usr/share/alsa/alsa.conf.d/50-pipewire.conf ]; then
sudo ln -s /usr/share/alsa/alsa.conf.d/50-pipewire.conf /etc/alsa/conf.d/
fi
if [ -e /usr/share/alsa/alsa.conf.d/99-pipewire-default.conf ]; then
sudo ln -s /usr/share/alsa/alsa.conf.d/99-pipewire-default.conf /etc/alsa/conf.d/
fi
+1
View File
@@ -13,5 +13,6 @@ INSTALLING SERVICES:
. "$SERVICES_DIR/install-seatd.sh"
. "$SERVICES_DIR/install-socklog-unix.sh"
. "$SERVICES_DIR/install-nanoklogd.sh"
. "$SERVICES_DIR/install-wirepluber.sh"
. "$SERVICES_DIR/install-emptty.sh"