mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-07 05:19:07 -04:00
10 lines
212 B
Bash
10 lines
212 B
Bash
|
|
#!/bin/bash
|
|
album_art=$(playerctl metadata mpris:artUrl)
|
|
if [[ -z $album_art ]]
|
|
then
|
|
# spotify is dead, we should die to.
|
|
exit
|
|
fi
|
|
curl -s "${album_art}" --output "/tmp/cover.jpeg"
|
|
echo "/tmp/cover.jpeg"
|