7 lines
175 B
Bash
Executable file
7 lines
175 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+4 dwmblocks
|
|
sleep 5
|
|
done
|