#!/bin/bash # #CMUS notification # body="" while [ "$#" -ge 2 ] do printf -v "$1" "%s" "$2" shift shift done filename=${file#*/} image=${file%/*}/cover.jpg [ -f "$image" ] && options="$options -i \"${image}\"" title=${title:-$filename} if [ -n "$artist" ] then body="$body $artist\n" fi if [ -n "$album" ] then body="$body $album" fi if [ -n "$date" ] then body="$body ${date%%-*}" fi body=${body:-'no informations'} notify-send --app-name=cmus -i "$image" "$title" "$body"