Copy all .config directory at once
This commit is contained in:
parent
e2d12b0e44
commit
280c214e9b
5 changed files with 7 additions and 18 deletions
|
@ -1,36 +0,0 @@
|
|||
#!/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"
|
Loading…
Add table
Add a link
Reference in a new issue