general: Cleanup

This commit is contained in:
Dylan Araps 2018-04-22 10:21:24 +10:00
parent b3b7dce035
commit eca9a6c32e

View file

@ -2922,12 +2922,11 @@ get_term_size() {
get_image_size() {
# This functions determines the size to make the thumbnail image.
read -r lines columns <<< "$(stty size)"
read -r width height <<< "$(identify -format "%w %h" "$image")"
font_width="$((term_width / columns))"
font_height="$((term_height / lines))"
read -r width height <<< "$(identify -format "%w %h" "$image")"
# Calculate image size based on terminal size.
# We multiply the sizes by 10 to do some more precise division.
while ((width >= (term_width * 10 / 25) ||