-
Notifications
You must be signed in to change notification settings - Fork 168
/
4-bluetooth.sh
executable file
·34 lines (29 loc) · 1.17 KB
/
4-bluetooth.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
#-------------------------------------------------------------------------
# _ _ __ __ _ _
# /_\ _ _ __| |_ | \/ |__ _| |_(_)__
# / _ \| '_/ _| ' \| |\/| / _` | _| / _|
# /_/ \_\_| \__|_||_|_| |_\__,_|\__|_\__|
# Arch Linux Post Install Setup and Config
#-------------------------------------------------------------------------
echo
echo "INSTALLING BLUETOOTH COMPONENTS"
echo
PKGS=(
'bluez' # Daemons for the bluetooth protocol stack
'bluez-utils' # Bluetooth development and debugging utilities
'bluez-firmware' # Firmwares for Broadcom BCM203x and STLC2300 Bluetooth chips
'blueberry' # Bluetooth configuration tool
'pulseaudio-bluetooth' # Bluetooth support for PulseAudio
# Deprecated ibraries for the bluetooth protocol stack.
# I believe the blues package above is all that is necessary now,
# but I havn't tested this out, so for now I install this too.
'bluez-libs'
)
for PKG in "${PKGS[@]}"; do
echo "INSTALLING ${PKG}"
sudo pacman -S "$PKG" --noconfirm --needed
done
echo
echo "Done!"
echo