From: Toni Jarjour <39845673+tonijarjour@users.noreply.github.com> Date: Tue, 15 Sep 2020 02:59:50 +0000 (-0400) Subject: sxiv automatically plays animations (part2) (#732) X-Git-Tag: v3.5~64 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=240c0e5fedd35c8aa17d379b510e1345ea024a23;p=nnn.git sxiv automatically plays animations (part2) (#732) * sxiv automatically plays animations (part2) * Update imgview * Update imgview --- diff --git a/plugins/imgview b/plugins/imgview index a5fafbf5..daa08452 100755 --- a/plugins/imgview +++ b/plugins/imgview @@ -26,7 +26,11 @@ view_dir() { count="$(listimages | grep -a -m 1 -ZznF "$target" | cut -d: -f1)" if [ -n "$count" ]; then - listimages | xargs -0 "$1" -n "$count" -- + if [ "$1" = 'sxiv' ]; then + listimages | xargs -0 "$1" -an "$count" -- + else + listimages | xargs -0 "$1" -n "$count" -- + fi else shift "$1" -- "$@" # fallback