sway-config/config/waybar/scripts/battery.sh

14 lines
418 B
Bash
Raw Normal View History

2023-01-10 12:48:24 -05:00
#!/usr/bin/env bash
CRIT=${1:-15}
while read -r capacity; do
stat="$(cat "${capacity/capacity/status}")"
perc="$(cat "$capacity")"
bat="$(cut --delimiter='/' -f5 <<< "$capacity")"
if (( perc <= CRIT )) && [[ "$stat" = 'Discharging' ]]; then
notify-send --urgency=critical 'Battery Low' "Current charge of $bat: $perc%"
fi
done < <(find /sys/class/power_supply/*/ -type f -name capacity)