Prevent Bluetooth starting Automatically on Startup / Resume

I have currently installed Manjaro Gnome Edition on my laptop and am a beginner in linux. On every bootup I see that bluetooth is turned on automatically.

I tried the following command to disable startup:

sudo systemctl disable bluetooth.service try this

But it looks like it completely disabled Bluetooth for me (wouldn’t turn on at all). Basically, I just want it disabled (turned off) when I boot my laptop or resume, but I would still ne able to enable it when I needed it.

Any assistance would be appreciated. Thanks!

edit /etc/bluetooth/main.conf

[Policy]
AutoEnable=false

that should do the job
please remember to enable the bluetooth.service

https://wiki.archlinux.org/title/Bluetooth

2 Likes

So you turn it off in the settings and it gets enabled again? When I remember correctly, then gnome just toggles rfkill (software switch) and usually it should save it.

Check this on the terminal:

rfkill list
rfkill block bluetooth
rfkill unblock bluetooth
rfkill toggle bluetooth

Thank @Olli, this was the fix to get things working properly for me. Thanks!

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.