init
This commit is contained in:
8
bin/playerctl-mon
Executable file
8
bin/playerctl-mon
Executable file
@ -0,0 +1,8 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user