4 lines
84 B
Bash
Executable file
4 lines
84 B
Bash
Executable file
#!/bin/sh
|
|
playerctl status -F | while read -r _; do
|
|
pkill -RTMIN+11 dwmblocks
|
|
done
|