restore missed wire plumbering
This commit is contained in:
@@ -3,6 +3,8 @@
|
|||||||
pkill -9 pipewire
|
pkill -9 pipewire
|
||||||
pipewire &
|
pipewire &
|
||||||
|
|
||||||
|
sleep 0.25
|
||||||
|
|
||||||
pkill -9 wireplumber
|
pkill -9 wireplumber
|
||||||
wireplumber &
|
wireplumber &
|
||||||
|
|
||||||
|
|||||||
Executable
+31
@@ -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
|
||||||
@@ -13,5 +13,6 @@ INSTALLING SERVICES:
|
|||||||
. "$SERVICES_DIR/install-seatd.sh"
|
. "$SERVICES_DIR/install-seatd.sh"
|
||||||
. "$SERVICES_DIR/install-socklog-unix.sh"
|
. "$SERVICES_DIR/install-socklog-unix.sh"
|
||||||
. "$SERVICES_DIR/install-nanoklogd.sh"
|
. "$SERVICES_DIR/install-nanoklogd.sh"
|
||||||
|
. "$SERVICES_DIR/install-wirepluber.sh"
|
||||||
|
|
||||||
. "$SERVICES_DIR/install-emptty.sh"
|
. "$SERVICES_DIR/install-emptty.sh"
|
||||||
|
|||||||
Reference in New Issue
Block a user