-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path920-bluetooth.sh
executable file
·49 lines (34 loc) · 1.98 KB
/
920-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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/sh
# ToppDev's Arch Linux Installation Scripts (TALIS)
# by Thomas Topp <[email protected]>
# License: GNU GPLv3
# ########################################################################################################## #
# Helper scripts #
# ########################################################################################################## #
scriptdir="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
source "$scriptdir/helper/color.sh"
source "$scriptdir/helper/log.sh"
source "$scriptdir/helper/install.sh"
source "$scriptdir/helper/checkArchRootInternet.sh"
# ########################################################################################################## #
# Check Arch distro #
# ########################################################################################################## #
check_arch_internet
# ########################################################################################################## #
# Installation #
# ########################################################################################################## #
# Bluetooth support for PulseAudio
pacinstall pulseaudio-bluetooth
# Daemons for the bluetooth protocol stack
pacinstall bluez
# Deprecated libraries for the bluetooth protocol stack
pacinstall bluez-libs
# Development and debugging utilities for the bluetooth protocol stack
pacinstall bluez-utils
# Bluetooth configuration tool
pacinstall blueberry
sudo systemctl enable bluetooth.service
sudo systemctl start bluetooth.service
sudo sed -i 's/'#AutoEnable=false'/'AutoEnable=true'/g' /etc/bluetooth/main.conf
# ########################################################################################################## #
box "Bluetooth software installed"