From 87d383068ae1b6ce178d48a51f7a15cd3ab7e715 Mon Sep 17 00:00:00 2001 From: ITmail-dk Date: Wed, 2 Nov 2022 08:08:26 +0100 Subject: [PATCH] ADD enable bluetooth.service --- install-scripts/enable-bluetooth.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 install-scripts/enable-bluetooth.sh diff --git a/install-scripts/enable-bluetooth.sh b/install-scripts/enable-bluetooth.sh new file mode 100644 index 0000000..a8725f7 --- /dev/null +++ b/install-scripts/enable-bluetooth.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +modprobe btusb + +sleep 1 + +sudo systemctl enable bluetooth.service + +sleep 1 + +sudo systemctl start bluetooth.service + +sleep 1 + +clear + +echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" +echo " " +echo " Enable Bluetooth DONE" +echo " " +echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-" \ No newline at end of file