]> git.madduck.net Git - etc/awesome.git/blob - scripts/mpdcover

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

port to awesome 4.0 completed; #248
[etc/awesome.git] / scripts / mpdcover
1 #!/bin/bash
2 #
3 # A simple cover fetcher script for current playing song on mpd.
4 #
5 # Original author: Wolfgang Mueller
6 #
7 # Adapted for Lain internal use.
8 # https://github.com/copycat-killer/lain
9 #
10 # You can use, edit and redistribute this script in any way you like.
11 #
12 # Dependencies: imagemagick.
13 #
14 # Usage: mpdcover <music_directory> <song_file> <cover_resize> <default_art>
15
16 # Configuration-------------------------------------------------------
17
18 # Music directory
19 MUSIC_DIR=$1
20
21 # Song file
22 file=$2
23
24 # Regex expression used for image search
25 IMG_REG="(Front|front|Cover|cover|Art|art|Folder|folder)\.(jpg|jpeg|png|gif)$"
26
27 # Path of temporary resized cover
28 TEMP_PATH="/tmp/mpdcover.png"
29
30 # Resize cover
31 COVER_RESIZE="$3x$3"
32
33 if [ $COVER_RESIZE == "x" ]; then
34     COVER_RESIZE="100x100"
35 fi
36
37 # The default cover to use (optional)
38 DEFAULT_ART=$4
39
40 #--------------------------------------------------------------------
41
42 # check if anything is playing at all
43 [[ -z $file ]] && exit 1
44
45 # Art directory
46 art="$MUSIC_DIR/${file%/*}"
47
48 # find every file that matches IMG_REG set the first matching file to be the
49 # cover.
50 cover="$(find "$art/" -maxdepth 1 -type f | egrep -i -m1 "$IMG_REG")"
51
52 # when no cover is found, use DEFAULT_ART as cover
53 cover="${cover:=$DEFAULT_ART}"
54
55 # check if art is available
56 if [[ -n $cover ]]; then
57    if [[ -n $COVER_RESIZE ]]; then
58         convert "$cover" -scale $COVER_RESIZE "$TEMP_PATH"
59         cover="$TEMP_PATH"
60    fi
61 else
62    rm $TEMP_PATH
63 fi
64
65 exit 0