We'll be using a cronjob for this, but let's start by writing the shell script we'll be running:
It has two conditions; one: the battery charge is below 10 and two: the adapter isn't plugged in (as we wouldn't want to re-receive the message when we've already plugged in the adaptor). Before we can start using crontab we'll need to know our dbus session, we can know this by echoing DBUS_SESSION_BUS_ADDRESS. This is needed for notify send (due to X server stuff). Now we'll need to install a crontab program, I recommend cronie. Let's make a crontab entry via "crontab -e" and adding the following lines
Where YOURS needs to be replaced with what you got after echoing that variable and LOCATIONOFSCRIPT speaks for itself. The first argument (*/10) tells cron to run this every 10 minutes.
And we're done!
Now if you want the opposite message, i.e when your battery is fully charged to pull the cord out. Then that's easy, just expand the script with the following:
if [ "$HIGHLIM" -le "$PERCENTAGE" ] && [ "$PLUGGEDSTATE" -eq "$ISPLUGGED" ] ; thenThis might help preserve your battery longer.