diff options
author | Juan C. Muller <jcmuller@gmail.com> | 2010-11-23 15:17:43 -0500 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@lavabit.com> | 2010-11-23 22:12:29 +0100 |
commit | 91192bd1473d6a43eb27ea802ac6fbd451f28fb2 (patch) | |
tree | 5f0145b52859c1dedd2b0eaab6ef49ddd163382f /contrib | |
parent | b1ed17b08da468589c178d4a21daa77a481a04c8 (diff) | |
download | pianobar-windows-91192bd1473d6a43eb27ea802ac6fbd451f28fb2.tar.gz pianobar-windows-91192bd1473d6a43eb27ea802ac6fbd451f28fb2.tar.bz2 pianobar-windows-91192bd1473d6a43eb27ea802ac6fbd451f28fb2.zip |
Add support for art covers included in the XML playlist from pandora.
See issue #56
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/eventcmd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/eventcmd.sh b/contrib/eventcmd.sh index 6e3a081..4a162a3 100755 --- a/contrib/eventcmd.sh +++ b/contrib/eventcmd.sh @@ -5,7 +5,7 @@ while read L; do k="`echo "$L" | cut -d '=' -f 1`" v="`echo "$L" | cut -d '=' -f 2`" export "$k=$v" -done < <(grep -e '^\(title\|artist\|album\|stationName\|pRet\|pRetStr\|wRet\|wRetStr\|songDuration\|songPlayed\|rating\)=' /dev/stdin) # don't overwrite $1... +done < <(grep -e '^\(title\|artist\|album\|stationName\|pRet\|pRetStr\|wRet\|wRetStr\|songDuration\|songPlayed\|rating\|coverArt\)=' /dev/stdin) # don't overwrite $1... case "$1" in # songstart) |