7 lines
186 B
Bash
Executable file
7 lines
186 B
Bash
Executable file
#!/bin/sh
|
|
# battery status file is sent in as an argument from sb-battery
|
|
|
|
upower --monitor-detail -i "$1" | while read -r _; do
|
|
pkill -RTMIN+3 dwmblocks
|
|
timeout 5 cat >/dev/null
|
|
done
|