5 lines
131 B
Bash
Executable file
5 lines
131 B
Bash
Executable file
#!/bin/sh
|
|
playerctl status -F | while read -r _; do
|
|
# WARN: Not currently used in dwmblocks
|
|
pkill -RTMIN+11 dwmblocks
|
|
done
|