Files
misc/bin/playerctl-mon
2025-07-02 00:07:49 -07:00

9 lines
213 B
Bash
Executable File

#!/bin/sh
playerctl --follow metadata title |
while read x; do
dunstctl close-all
TITLE=$(playerctl metadata title)
ARTIST=$(playerctl metadata artist)
notify-send "$TITLE" "$ARTIST" -i :
done