aboutsummaryrefslogtreecommitdiff
path: root/.config/waybar/scripts/album_art.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/waybar/scripts/album_art.sh')
-rwxr-xr-x.config/waybar/scripts/album_art.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/waybar/scripts/album_art.sh b/.config/waybar/scripts/album_art.sh
new file mode 100755
index 0000000..5a8cdab
--- /dev/null
+++ b/.config/waybar/scripts/album_art.sh
@@ -0,0 +1,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"