voidrice/.local/bin/cron/cronbat

10 lines
360 B
Text
Raw Normal View History

#!/bin/sh
2019-11-23 21:16:30 +00:00
# Notify me with notify-send if my battery is below 25%.
# You can set this to run via cron.
[ "$(cat /sys/class/power_supply/BAT0/status)" = "Charging" ] && exit
[ "$(cat /sys/class/power_supply/BAT0/capacity)" -lt 25 ] &&
2020-11-14 20:09:25 +00:00
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u $USER)/bus &&
2019-11-23 21:16:30 +00:00
notify-send -u critical "Battery critically low."