9 lines
185 B
Bash
Executable File
9 lines
185 B
Bash
Executable File
#!/usr/bin/env bash
|
|
album_art=$(playerctl metadata mpris:artUrl 2> /dev/null)
|
|
if [[ -z $album_art ]]
|
|
then
|
|
# spotify is dead, we should die too.
|
|
exit
|
|
fi
|
|
echo ${album_art#file://}
|