LXDE bluetooth gone. How do I get it back?
Suddenly I can't find the bluetooth icon on the LXDE system tray. I might have disabled it by mistake. How do I get it back?
I tried to open "run" from the menu and typing bluetooth-agent but nothing happens.
I used to disable bluetooth by right-clicking the icon and choosing "disable" (or something like that) just to save battery charge. It used to reappear on restart but now it doesn't. It's there in unity but not in LXDE.
lsmod | grep bluetooth gives out thisbluetooth 202226 22 bnep,btusb,rfcomm
edit: following this question Can't enable Bluetooth 13.10 I tried try sudo rfkill unblock bluetooth but it did nothing
1 Answer
Lubuntu, which has LXDE as its desktop environment, uses blueman-manager. Here's something on how to disable it:
1Disable Bluetooth
This is achieved by blacklisting the relevant bluetooth modules. To find these, issue the following in LXterminal:
lsmod | grep bluetoothAn example out would be:
bluetooth 179900 23 rfcomm,bnep,btusbUsing the above example, you would edit the
blacklist.conffile, again using LXterminal:
gksudo leafpad /etc/modprobe.d/blacklist.confand add the following lines to the end of the file:
blacklist rfcommblacklist bnepblacklist btusbblacklist bluetoothAfter rebooting, issuing:
lsmod | grep bluetoothShould not find anything.