I succesfully solved the sudden battery drop with this piece of script: Code: #!/bin/sh echo rootme | devel-su -c "/sbin/stop bme" sleep 10; echo rootme | devel-su -c "/sbin/start bme" exit 0; But now how to run this when the drop occurs? There is no battery percentage check in ProfileMatic. Any chance getting it there? Since this only works when the drop is in effect, does nothing if you run it before the drop occurs. I also tested the restart bme and that did not seem to work.
#!/bin/sh echo rootme | devel-su -c "/sbin/stop bme" sleep 10; echo rootme | devel-su -c "/sbin/start bme" exit 0;