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