From 65142be351d75d6cec904c031aa7f3d7d57cef31 Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Thu, 13 May 2021 06:05:38 -0400 Subject: [PATCH] Enable Bluetooth Service This will prevent the bug where bluetooth cannot be managed by GNOME --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 9bbedd4..84232f8 100644 --- a/install.sh +++ b/install.sh @@ -296,6 +296,9 @@ systemctl enable apparmor --root=/mnt &>/dev/null # Enabling Firewalld systemctl enable firewalld --root=/mnt &>/dev/null +# Enabling Bluetooth Service (If you don't want bluetooth, disable it with GNOME, don't disable the service) +systemctl enable bluetooth --root=/mnt &>/dev/null + # Setting umask to 077 sed -i 's/022/077/g' /mnt/etc/profile echo "" >> /mnt/etc/bash.bashrc