Add low battery script for notificatio nusing cron job

This commit is contained in:
Tanguy Herbron 2020-08-02 16:05:04 +02:00
parent 590af88d27
commit 7605593b81

View File

@ -0,0 +1,16 @@
#!/bin/bash
battery_level=$(acpi -b | grep -P -o -m1 "[0-9]+(?=%)")
if [ $battery_level -le 5 ]
then
/usr/bin/notify-send "Battery level critical" "Battery level critically low, plug to avoid shutdown" --urgency=critical
exit
fi
if [ $battery_level -le 15 ]
then
/usr/bin/notify-send "Battery low" "Battery level dropped under 15%"
exit
fi