From b508d8a4302ff54c49db73228e5569ee7ce4ee50 Mon Sep 17 00:00:00 2001 From: deepjyoti30 Date: Tue, 19 Feb 2019 01:50:24 +0530 Subject: [PATCH] Bugs --- kunst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kunst b/kunst index 93f2e9f..b6ef47b 100755 --- a/kunst +++ b/kunst @@ -51,14 +51,14 @@ update_cover() { else echo "error: file does not have an album art" get_cover_online - # ARTLESS=true - return fi # resize the image to 250x250 - convert $COVER -resize 250x250 $COVER + if [ $ARTLESS == false ]; then + convert $COVER -resize 250x250 $COVER + echo "kunst: resized album art to 250x250" + fi - echo "kunst: resized album art to 250x250" }