From 34c41739da9a5dd994b49ddaf8442a8ebd395ffc Mon Sep 17 00:00:00 2001 From: Vivian Elisabeth H <36878099+SparkleDEV@users.noreply.github.com> Date: Sat, 10 Jan 2026 19:04:21 +0100 Subject: [PATCH] Added options for Audio/Pipewire and Bluez/Bluetooth --- install.sh | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e85f72f..f286d17 100755 --- a/install.sh +++ b/install.sh @@ -62,7 +62,9 @@ mapfile -t tools < <( "Gaming" \ "VR Gaming" \ "Hamr Sticker Picker" \ - "CUPS Printing Support" + "CUPS Printing Support" \ + "Audio" \ + "Bluetooth" ) mapfile -t extratools < <( @@ -225,6 +227,22 @@ for choice in "${tools[@]}"; do sudo systemctl enable cups ;; + "Audio") + sudo -v || exit 1 + yay -S --needed --noconfirm \ + pipewire \ + pipewire-pulse \ + wireplumber + + systemctl --user enable --now pipewire pipewire-pulse wireplumber + ;; + "Bluetooth") + sudo -v || exit 1 + yay -S --needed --noconfirm \ + bluez + + sudo systemctl enable bluetooth --now + ;; esac done