Added filesize to thumbnail filename, this lets us remove the slow image size check and speeds up the script even more!

This commit is contained in:
dylan araps 2016-01-06 12:49:21 +11:00
parent b5be49e545
commit 86c5645fca
1 changed files with 2 additions and 7 deletions

View File

@ -670,13 +670,7 @@ getimage () {
[ "$wall" == "on" ] && getwallpaper [ "$wall" == "on" ] && getwallpaper
# Get name of image and prefix it with it's crop mode and offset # Get name of image and prefix it with it's crop mode and offset
imgname="$crop_mode-$crop_offset-${img##*/}" imgname="$crop_mode-$crop_offset-$imgsize-${img##*/}"
# This check allows you to resize the image at launch
if [ -f "$imgtempdir/$imgname" ] && [ $imgheight != $imgsize ]; then
imgheight=$(identify -format "%h" "$imgtempdir/$imgname")
rm "$imgtempdir/$imgname"
fi
# Check to see if the thumbnail exists before we do any cropping. # Check to see if the thumbnail exists before we do any cropping.
if [ ! -f "$imgtempdir/$imgname" ]; then if [ ! -f "$imgtempdir/$imgname" ]; then
@ -723,6 +717,7 @@ getimage () {
"$img" \ "$img" \
-gravity $crop_offset \ -gravity $crop_offset \
-crop "$size"x"$size"+0+0 \ -crop "$size"x"$size"+0+0 \
-quality 95 \
-scale "$imgsize"x"$imgsize" \ -scale "$imgsize"x"$imgsize" \
"$imgtempdir/$imgname" "$imgtempdir/$imgname"
;; ;;