diff options
Diffstat (limited to '.config/cmus/cc1.sh')
-rw-r--r-- | .config/cmus/cc1.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/cmus/cc1.sh b/.config/cmus/cc1.sh new file mode 100644 index 0000000..759e802 --- /dev/null +++ b/.config/cmus/cc1.sh @@ -0,0 +1,26 @@ +FOLDER=$( cmus-remote -Q | grep "file" | sed "s/file //" | rev | cut -d"/" -f2- | rev ) + +FLIST=$( find "$FOLDER" -type f ) + +if echo "$FLIST" | grep -i ".jpeg\|.png\|.jpg" &>/dev/null; then + ART=$( echo "$FLIST" | grep -i "cover.jpg\|cover.png\|front.jpg\|front.png\|folder.jpg\|folder.png" | head -n1 ) + + if [[ -z "$ART" ]]; then + ART=$( echo "$FLIST" | grep -i ".png\|.jpg\|.jpeg" | head -n1 ) + fi + + PROC=$( ps -eF | grep "feh" | grep -v "cmus\|grep" | cut -d"/" -f2- ) + + if [[ "/$PROC" == "$ART" ]]; then + exit + fi + + killall -q feh + + # '200x200' is the window size for the artwork. '+1160+546' is the offset. + # For example, if you want a 250 by 250 window on the bottom right hand corner of a 1920 by 1080 screen: "250x250+1670+830" + setsid feh --bg-color black -g 250x250+1670+830 -x --fill "$ART" & +else + killall -q feh + exit +fi |