소스 검색

Merge pull request #851 from Lucas-Summers/master

adding support for ueberzug into plugins/preview-tui
master
Mischievous Meerkat GitHub 3 년 전
부모
커밋
d07c4907de
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +10
    -1
      plugins/preview-tui

+ 10
- 1
plugins/preview-tui 파일 보기

@@ -17,7 +17,7 @@
# - tar
# - man
# - optional: bat for code syntax highlighting
# - optional: kitty terminal or catimg for images
# - optional: kitty terminal, catimg, viu, or ueberzug for images
# - optional: scope.sh file viewer from ranger.
# To use:
# 1. drop scope.sh executable in $PATH
@@ -171,6 +171,8 @@ preview_file () {
catimg "$1"
elif exists viu; then
viu -t "$1"
elif exists ueberzug; then
preview_ueberzug "$cols" "$lines" "$1"
else
fifo_pager print_bin_info "$1"
fi
@@ -193,6 +195,13 @@ preview_file () {
fi
}

preview_ueberzug() {
{
printf '{"action": "add", "identifier": "nnn_ueberzug", "x": 0, "y": 0, "width": "%s", "height": "%s", "path": "%s"}\n' "$1" "$2" "$3"
read -r
} | ueberzug layer --parser json
}

if [ "$PREVIEW_MODE" ] ; then
if [ ! -r "$NNN_FIFO" ] ; then
echo "No FIFO available! (\$NNN_FIFO='$NNN_FIFO')" >&2


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