2020-02-08 23:43:37 +00:00
|
|
|
#!/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."
|