summaryrefslogtreecommitdiff
path: root/.local/bin/notify-battery
blob: f50e3567ef6dbb45c8d0ebe194ff99632f87c853 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

set -eu

for bat in /sys/class/power_supply/BAT*; do
    read -r capacity <"$bat"/capacity
    notify-send -c osd -h int:value:"$capacity" -h string:x-dunst-stack-tag:"$0_$bat" "Battery (${bat##*/})" "$capacity%"
done