2024-03-26 22:58:04 +00:00
|
|
|
self:
|
|
|
|
with self; ''
|
|
|
|
status=$(cat /sys/class/power_supply/BAT0/status)
|
|
|
|
if [ $status != "Discharging" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
capacity=$(cat /sys/class/power_supply/BAT0/capacity)
|
2024-03-27 10:37:07 +00:00
|
|
|
if [ $capacity -lt 20 ]; then
|
2024-03-29 13:12:52 +00:00
|
|
|
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
|
2024-03-26 22:58:04 +00:00
|
|
|
${libnotify}/bin/notify-send -u critical "Battery ''${capacity}%"
|
|
|
|
fi
|
|
|
|
''
|