Quote:
Originally Posted by CyberPaul
your script seems to disconnect the BT device and disable Bluetooth. The problem is how to enable it back once out of KOReader...
I found that on Linux it should be done with "systemctl enable bluetooth". Unfortunately there is no systemctl command within Kobo Linux.
|
I forgot to use command to enable Bluetooth to check whether it works or not. Maybe we can try these commands ?
Quote:
#!/bin/sh
# run BT daemon
/libexec/bluetooth/bluetoothd&
# for BT controller
bluetoothctl agent on
bluetoothctl power on
# for paired BT device.
bluetoothctl connect
|