Added options for Audio/Pipewire and Bluez/Bluetooth

This commit is contained in:
2026-01-10 19:04:21 +01:00
parent caac420894
commit 34c41739da

View File

@@ -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