85 lines
2 KiB
Bash
Executable file
85 lines
2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
loop() {
|
|
loop_status=$(playerctl -p Spot loop)
|
|
|
|
case $loop_status in
|
|
"None" )
|
|
playerctl -p Spot loop Playlist
|
|
eww update repeat_icon=""
|
|
;;
|
|
"Track" )
|
|
playerctl -p Spot loop None
|
|
eww update repeat_icon=""
|
|
;;
|
|
"Playlist" )
|
|
playerctl -p Spot loop Track
|
|
eww update repeat_icon=""
|
|
;;
|
|
* )
|
|
echo "Unknown loop status."
|
|
;;
|
|
esac
|
|
}
|
|
|
|
loop_status() {
|
|
loop_status=$(playerctl -p Spot loop)
|
|
|
|
case $loop_status in
|
|
"None" )
|
|
eww update repeat_icon=""
|
|
;;
|
|
"Track" )
|
|
eww update repeat_icon=""
|
|
;;
|
|
"Playlist" )
|
|
eww update repeat_icon=""
|
|
;;
|
|
* )
|
|
echo "Unknown loop status."
|
|
;;
|
|
esac
|
|
}
|
|
|
|
get_length() {
|
|
if [[ $(eww get get_pos) == "true" ]]; then
|
|
eww update song_pos="$(playerctl -p Spot position)"
|
|
fi
|
|
eww update song_length="$(echo "$(playerctl -p Spot metadata mpris:length)/1000000" | bc -l)"
|
|
}
|
|
|
|
get_accents() {
|
|
accents="$(coloryou /tmp/cover.jpg | sed 's/,//g' | sed 's/}//' | sed 's/'\''//g')"
|
|
music_accent=$(echo "$accents" | awk '{ print $2 }')
|
|
eww update music_accent="$music_accent"
|
|
|
|
button_accent=$(echo "$accents" | awk '{ print $4 }')
|
|
eww update button_accent="$button_accent"
|
|
|
|
button_text=$(echo "$accents" | awk '{ print $6 }')
|
|
eww update button_text="$button_text"
|
|
}
|
|
|
|
get_cover() {
|
|
existing_file="/tmp/cover.jpg"
|
|
new_image_url=$(playerctl -p Spot metadata mpris:artUrl)
|
|
existing_hash=$(md5sum "$existing_file" | awk '{print $1}')
|
|
|
|
# Download the new image only if the hashes are different
|
|
if [[ "$(wget -qO- "$new_image_url" | md5sum | awk '{print $1}')" != "$existing_hash" ]]; then
|
|
wget -qO "$existing_file" "$new_image_url"
|
|
get_accents
|
|
fi
|
|
|
|
if [[ -f "/tmp/cover.jpg" ]]; then
|
|
echo "/tmp/cover.jpg"
|
|
else
|
|
echo "randomfile"
|
|
fi
|
|
}
|
|
|
|
[[ "$1" == "accents" ]] && get_accents
|
|
[[ "$1" == "loop" ]] && loop
|
|
[[ "$1" == "loop_status" ]] && loop_status
|
|
[[ "$1" == "length" ]] && get_length
|
|
[[ "$1" == "cover" ]] && get_cover
|