diff --git a/configure-stormux.sh b/configure-stormux.sh index cc9204e..e804b56 100755 --- a/configure-stormux.sh +++ b/configure-stormux.sh @@ -55,6 +55,10 @@ while [[ "$choice" != "Exit" ]]; do "Configure internet") /usr/bin/nmtui-connect ;; + "Enable Bluetooth") + sudo sed -i 's/^#AutoEnable=false$/AutoEnable=true/' /etc/bluetooth/main.conf + sudo systemctl enable bluetooth --now + ;; "Install Lxqt Desktop") source .includes/gui.sh lxqt ;; @@ -81,6 +85,7 @@ while [[ "$choice" != "Exit" ]]; do choice="$(menulist \ "Change username" \ "Configure internet" \ + "Enable Bluetooth" \ "Install Lxqt Desktop" \ "Install Mate Desktop" \ "Install Ratpoison Windowmanager" \