mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 03:41:27 +00:00
sxiv automatically plays animations (part2) (#732)
* sxiv automatically plays animations (part2) * Update imgview * Update imgview
This commit is contained in:
parent
1912cee957
commit
240c0e5fed
|
@ -26,7 +26,11 @@ view_dir() {
|
||||||
count="$(listimages | grep -a -m 1 -ZznF "$target" | cut -d: -f1)"
|
count="$(listimages | grep -a -m 1 -ZznF "$target" | cut -d: -f1)"
|
||||||
|
|
||||||
if [ -n "$count" ]; then
|
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
|
else
|
||||||
shift
|
shift
|
||||||
"$1" -- "$@" # fallback
|
"$1" -- "$@" # fallback
|
||||||
|
|
Loading…
Reference in a new issue