소스 검색

sxiv automatically plays animations (part2) (#732)

* sxiv automatically plays animations (part2)

* Update imgview

* Update imgview
master
Toni Jarjour GitHub 5 년 전
부모
커밋
240c0e5fed
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      plugins/imgview

+ 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


불러오는 중...
취소
저장