dotfiles/eggs/waybar/bar/scripts/album_art.sh
Katzenkralle 4e9be09c10 Init
2025-05-10 19:23:48 +02:00

9 lines
185 B
Bash
Executable File

#!/usr/bin/env bash
album_art=$(playerctl metadata mpris:artUrl 2> /dev/null)
if [[ -z $album_art ]]
then
# spotify is dead, we should die too.
exit
fi
echo ${album_art#file://}