I'm using a bluetooth mouse. Most of the time, I need to restart the bluetooth service after the laptop comes back from suspension/standby/sleep: service bluetooth restart Restarting the mouse itself does not help. Adding the script with the following to /etc/pm/sleep.d/, as suggested in Bug 292165, also doesn't: case "$1" in suspend) service bluetooth stop ;; resume) service bluetooth start ;; *) ;; esac
This is a bug in BlueZ, not in Bluedevil. Bluedevil tries to reconnect on resume to the devices connected before suspend, but if you need to restart the bluetooth service (BlueZ) instead of just reconnect to the mouse, this is clearly an issue with BlueZ.