From 68af6967893bfbd64aeabb340ce6645e75fa0374 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 9 Feb 2025 00:53:14 +0900 Subject: [PATCH] updated pipewire.sh --- install-scripts/pipewire.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/install-scripts/pipewire.sh b/install-scripts/pipewire.sh index 4791396..01ff9e9 100755 --- a/install-scripts/pipewire.sh +++ b/install-scripts/pipewire.sh @@ -11,6 +11,12 @@ pipewire=( sof-firmware ) +# added this as some reports script didnt install this. +# basically force reinstall +pipewire_2=( + pipewire-pulse +) + ############## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ############## # Set some colors for output messages # Determine the directory where the script is located @@ -35,6 +41,10 @@ for PIPEWIRE in "${pipewire[@]}"; do install_package "$PIPEWIRE" "$LOG" done +for PIPEWIRE2 in "${pipewire_2[@]}"; do + install_package_pacman "$PIPEWIRE" "$LOG" +done + echo -e "${NOTE} Activating Pipewire Services..." # Redirect systemctl output to log file systemctl --user enable --now pipewire.socket pipewire-pulse.socket wireplumber.service 2>&1 | tee -a "$LOG"