When I'm charging my my notebook (Sony Vaio E series) and after I've removed the AC adapter since the charge is complete, the battery always shown that "fully charged" so I have write a script to manually do this every time:
#!/bin/bash
us=`id -u`
if [ $us != 0 ] ; then
echo "non sei root"
exit 1
fi
killall upowerd
(/usr/lib/upower/upowerd 1>/dev/null) &
But this is very annoying...there is an alternative? (like update udev/upower ecc)?
