From aae1f618c630dd18ac2ecb843c9e70b3817d3483 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Fri, 28 Oct 2022 12:25:16 +0200 Subject: case-insensitive dmenu emoji. --- cmusShow.sh | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'cmusShow.sh') diff --git a/cmusShow.sh b/cmusShow.sh index a28d8f2..8a5c576 100755 --- a/cmusShow.sh +++ b/cmusShow.sh @@ -2,6 +2,12 @@ # Shows a notification with info about the current playing song. +scriptName="${0##*/}" +[ "$(pgrep "${scriptName}" | wc -l)" -gt "2" ] && exit 0 + +notificationFreq=0.1 +steps=20 + getCmusInfo() { cmus-remote -Q | grep "^${1} " | cut -d' ' -f "${2}-" } @@ -13,9 +19,14 @@ sToTime() { echo "${min}:${s}" } -artist="$(getCmusInfo 'tag artist' '3')" -album="$(getCmusInfo 'tag album' '3')" -title="$(getCmusInfo 'tag title' '3')" -position="$(getCmusInfo 'position' '2')" -duration="$(getCmusInfo 'duration' '2')" -dunstify -r "$(dunstifyIDs.sh cmusShow)" "${title}" "${artist} - ${album}\n$(sToTime ${position}) - $(sToTime ${duration})" +i=0 +while [ "$i" -lt "$steps" ]; do + artist="$(getCmusInfo 'tag artist' '3')" + album="$(getCmusInfo 'tag album' '3')" + title="$(getCmusInfo 'tag title' '3')" + position="$(getCmusInfo 'position' '2')" + duration="$(getCmusInfo 'duration' '2')" + dunstify -r "$(dunstifyIDs.sh cmusShow)" -t 250 "${title}" "${artist} - ${album}\n$(sToTime "${position}") - $(sToTime "${duration}")" + sleep "$notificationFreq" + i=$((i+1)) +done -- cgit v1.2.1