From df55f83d1394842559abfa3ebb883dc4ce99975b Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Tue, 13 Feb 2024 13:21:05 +0100 Subject: Minor adjustments to cmusShow.sh and vol.sh. --- cmusShow.sh | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) (limited to 'cmusShow.sh') diff --git a/cmusShow.sh b/cmusShow.sh index b61e908..4382e68 100755 --- a/cmusShow.sh +++ b/cmusShow.sh @@ -21,11 +21,20 @@ sToTime() { echo "${min}:${s}" } -# Album art info +getAlbumIcon() { + albumIcon="/tmp/$(echo "$playingFile" | base64 -w0).png" + ffmpeg -y -i "$playingFile" -an -vf scale="${iconSize}:${iconSize}" "$albumIcon" + echo "$albumIcon" +} + +# Song info playingFile="$(getCmusInfo 'file' '2')" -albumArt="/tmp/$(echo "$playingFile" | base64 -w0).png" -ffmpeg -y -i "$playingFile" -an -vf scale="${iconSize}:${iconSize}" "$albumArt" +title="🎢 $(getCmusInfo 'tag title' '3') 🎢" +artist="πŸ§‘β€πŸŽ€ $(getCmusInfo 'tag artist' '3')" +album="$(getCmusInfo 'tag album' '3') πŸ’½" +duration="$(getCmusInfo 'duration' '2')" +albumIcon="$(getAlbumIcon)" # Bluetooth info @@ -40,25 +49,31 @@ if bluetoothctl info; then bluetoothInfo="\n${device} - ${battery}" fi +playingIcon='' i=0 while [ "$i" -lt "$steps" ]; do - playingIcon='' + currentlyPlayingFile="$(getCmusInfo 'file' '2')" + if [ "$currentlyPlayingFile" != "$playingFile" ]; then + albumIcon="$(getAlbumIcon)" + title="🎢 $(getCmusInfo 'tag title' '3') 🎢" + artist="πŸ§‘β€πŸŽ€ $(getCmusInfo 'tag artist' '3')" + album="$(getCmusInfo 'tag album' '3') πŸ’½" + duration="$(getCmusInfo 'duration' '2')" + playingFile="$currentlyPlayingFile" + fi + [ "$(getCmusInfo 'status' 2)" = 'playing' ] && playingIcon='▢️' [ "$(getCmusInfo 'status' 2)" = 'paused' ] && playingIcon='⏸️' - title="🎢 $(getCmusInfo 'tag title' '3') 🎢" - artist="πŸ§‘β€πŸŽ€ $(getCmusInfo 'tag artist' '3')" - album="$(getCmusInfo 'tag album' '3') πŸ’½" position="$(getCmusInfo 'position' '2')" - duration="$(getCmusInfo 'duration' '2')" percentage="$(awk "BEGIN { print int(${position}/${duration}*100) }")" dunstify \ -r "$(dunstifyIDs.sh cmusShow)" \ -t 1000 \ - -i "$albumArt" \ + -i "$albumIcon" \ -h "int:value:${percentage}" \ "${title}" \ "${artist} - ${album}\n${playingIcon} $(sToTime "${position}") - $(sToTime "${duration}")${bluetoothInfo}" -- cgit v1.2.1