From f979d0e6271ca8e797c4383747c641f7ca6a1179 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 9 Feb 2017 09:54:38 +0100 Subject: [PATCH] sxiv: Display only first frame resolution --- .config/sxiv/exec/image-info | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"