1
0
Fork 0
dotfiles/.local/libexec/daemons/sbd-battery

8 lines
186 B
Plaintext
Raw Normal View History

2023-02-06 22:22:50 +01:00
#!/bin/sh
# battery status file is sent in as an argument from sb-battery
2023-02-27 09:34:11 +01:00
upower --monitor-detail -i "$1" | while read -r _; do
2024-01-02 19:09:46 +01:00
pkill -RTMIN+3 dwmblocks
timeout 5 cat >/dev/null
2023-02-27 09:34:11 +01:00
done