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"