浏览代码
sxiv automatically plays animations (part2) (#732)
* sxiv automatically plays animations (part2)
* Update imgview
* Update imgview
master
Toni Jarjour
GitHub
4 年前
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有
1 个文件被更改,包括
5 次插入 和
1 次删除
-
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 |
|
|
|