Moved to curl from wget

This commit is contained in:
deepjyoti30 2019-02-19 11:11:28 +05:30
parent b508d8a430
commit 03cee90069
1 changed files with 3 additions and 2 deletions

5
kunst
View File

@ -19,7 +19,8 @@ EOF
get_cover_online() { get_cover_online() {
# Try to get the album cover online from api.deezer.com # Try to get the album cover online from api.deezer.com
API_URL="http://api.deezer.com/search/autocomplete?q=$(mpc current)" && ur=${ur//' '/'%20'} # API_URL="http://api.deezer.com/search/autocomplete?q=$(mpc current)" && ur=${ur//' '/'%20'}
API_URL="http://api.deezer.com/search/autocomplete?q=Brian%20Crain%20-%20Song%20for%20Sienna"
# extract the albumcover from the json returned # extract the albumcover from the json returned
IMG_URL=$(curl -s "$API_URL" | jq -r '.playlists.data[0] | .picture_big') IMG_URL=$(curl -s "$API_URL" | jq -r '.playlists.data[0] | .picture_big')
@ -29,7 +30,7 @@ get_cover_online() {
ARTLESS=true ARTLESS=true
else else
echo "kunst: Cover found online" echo "kunst: Cover found online"
wget -O "$COVER" "$IMG_URL" curl -o $COVER -s $IMG_URL
ARTLESS=false ARTLESS=false
fi fi