diff --git a/.config/sxiv/exec/image-info b/.config/sxiv/exec/image-info index a7802162..13da8d87 100755 --- a/.config/sxiv/exec/image-info +++ b/.config/sxiv/exec/image-info @@ -3,6 +3,7 @@ filename=$(basename "$1") filesize=$(du -Hh "$1" | cut -f 1) -geometry=$(identify -format '%wx%h' "$1") +## The '[0]' stands for the first frame of a multi-frame file, e.g. gif. +geometry=$(identify -format '%wx%h' "$1[0]") printf "%s | %s | %s" "$filename" "$filesize" "$geometry"