#!/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"