5 lines
157 B
Plaintext
5 lines
157 B
Plaintext
|
#!/bin/sh
|
||
|
song=$(playerctl metadata --format "{{ title }}\n{{ artist }}\n{{ album }}")
|
||
|
notify-send "Spotify" "$song" #--icon=~/.config/spotifyd/penguin.jpg
|
||
|
|