dotfiles/dot_config/waybar/modules/mpris/executable_album_art.bak.sh
Hydroxycarbamide 1ff2d77058 Add waybar
2024-05-14 19:47:03 +02:00

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"