Copy all .config directory at once

This commit is contained in:
Yorick Barbanneau 2023-03-07 22:16:24 +01:00
parent e2d12b0e44
commit 280c214e9b
5 changed files with 7 additions and 18 deletions

36
files/config/cmus/notify.sh Executable file
View file

@ -0,0 +1,36 @@
#!/bin/bash
#
#CMUS notification
#
options="--app-name=cmus"
body=""
while [ "$#" -ge 2 ]
do
eval $1='$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 <i>$artist</i>\n"
fi
if [ -n "$album" ]
then
body="$body $album"
fi
if [ -n "$date" ]
then
body="$body ${date%%-*}"
fi
body=${body:-'no informations'}
notify-send $options "$title" "$body"