aboutsummaryrefslogtreecommitdiff
path: root/.config/waybar/scripts/album_art.sh
blob: 5a8cdab61b160bd3307a5eb63d4baad265fb3114 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
album_art=$(playerctl -p spotify_player metadata mpris:artUrl)
if [[ -z $album_art ]] 
then
   # spotify is dead, we should die too.
   exit
fi
curl -s  "${album_art}" --output "/tmp/cover.jpeg"
echo "/tmp/cover.jpeg"