Added options for Audio/Pipewire and Bluez/Bluetooth
This commit is contained in:
20
install.sh
20
install.sh
@@ -62,7 +62,9 @@ mapfile -t tools < <(
|
|||||||
"Gaming" \
|
"Gaming" \
|
||||||
"VR Gaming" \
|
"VR Gaming" \
|
||||||
"Hamr Sticker Picker" \
|
"Hamr Sticker Picker" \
|
||||||
"CUPS Printing Support"
|
"CUPS Printing Support" \
|
||||||
|
"Audio" \
|
||||||
|
"Bluetooth"
|
||||||
)
|
)
|
||||||
|
|
||||||
mapfile -t extratools < <(
|
mapfile -t extratools < <(
|
||||||
@@ -225,6 +227,22 @@ for choice in "${tools[@]}"; do
|
|||||||
|
|
||||||
sudo systemctl enable cups
|
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
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user