2020-05-05 23:08:10 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
2020-06-09 01:09:35 +00:00
|
|
|
# Description: Terminal based file previewer
|
2020-05-05 23:08:10 +00:00
|
|
|
#
|
2020-06-09 01:09:35 +00:00
|
|
|
# Note: This plugin needs a "NNN_FIFO" to work. See man.
|
2021-03-20 00:58:46 +00:00
|
|
|
# For a more extended version of this script with additional optional dependencies, see preview-tui-ext.
|
2020-05-05 23:08:10 +00:00
|
|
|
#
|
2020-06-09 01:09:35 +00:00
|
|
|
# Dependencies:
|
2021-04-22 12:15:42 +00:00
|
|
|
# - Supports 4 independent methods to preview with:
|
2020-06-09 01:09:35 +00:00
|
|
|
# - tmux (>=3.0), or
|
2021-04-27 06:26:52 +00:00
|
|
|
# - kitty with allow_remote_control and listen_on set in kitty.conf, or
|
2021-04-22 12:15:42 +00:00
|
|
|
# - QuickLook on WSL (https://github.com/QL-Win/QuickLook)
|
2020-06-09 01:09:35 +00:00
|
|
|
# - $TERMINAL set to a terminal (it's xterm by default).
|
|
|
|
# - less or $PAGER
|
|
|
|
# - tree or exa or ls
|
|
|
|
# - mediainfo or file
|
2020-06-20 13:39:32 +00:00
|
|
|
# - mktemp
|
2020-06-09 01:09:35 +00:00
|
|
|
# - unzip
|
|
|
|
# - tar
|
|
|
|
# - man
|
|
|
|
# - optional: bat for code syntax highlighting
|
2021-03-14 06:53:03 +00:00
|
|
|
# - optional: ueberzug, kitty terminal, viu or catimg for images.
|
2020-06-09 01:09:35 +00:00
|
|
|
# - optional: scope.sh file viewer from ranger.
|
|
|
|
# To use:
|
|
|
|
# 1. drop scope.sh executable in $PATH
|
|
|
|
# 2. set/export $USE_SCOPE as 1
|
2020-06-10 00:41:57 +00:00
|
|
|
# - optional: pistol file viewer (https://github.com/doronbehar/pistol).
|
|
|
|
# To use:
|
|
|
|
# 1. install pistol
|
|
|
|
# 2. set/export $USE_PISTOL as 1
|
2020-05-05 23:08:10 +00:00
|
|
|
#
|
2020-05-06 05:12:29 +00:00
|
|
|
# Usage:
|
2020-06-09 01:09:35 +00:00
|
|
|
# You need to set a NNN_FIFO path and a key for the plugin with NNN_PLUG,
|
2020-05-05 23:08:10 +00:00
|
|
|
# then start `nnn`:
|
|
|
|
#
|
2020-06-02 08:56:50 +00:00
|
|
|
# $ nnn -a
|
|
|
|
#
|
|
|
|
# or
|
|
|
|
#
|
2020-05-05 23:08:10 +00:00
|
|
|
# $ NNN_FIFO=/tmp/nnn.fifo nnn
|
|
|
|
#
|
|
|
|
# Then in `nnn`, launch the `preview-tui` plugin.
|
|
|
|
#
|
|
|
|
# If you provide the same NNN_FIFO to all nnn instances, there will be a
|
2020-07-14 23:19:13 +00:00
|
|
|
# single common preview window. If you provide different FIFO path (e.g.
|
2020-06-02 08:56:50 +00:00
|
|
|
# with -a), they will be independent.
|
2020-05-05 23:08:10 +00:00
|
|
|
#
|
2020-06-09 01:09:35 +00:00
|
|
|
# The previews will be shown in a tmux split. If that isn't possible, it
|
|
|
|
# will try to use a kitty terminal split. And as a final fallback, a
|
|
|
|
# different terminal window will be used ($TERMINAL).
|
|
|
|
#
|
|
|
|
# Tmux and kitty users can configure $SPLIT to either "h" or "v" to set a
|
2020-06-09 14:57:28 +00:00
|
|
|
# 'h'orizontal split or a 'v'ertical split (as in, the line that splits the
|
|
|
|
# windows will be horizontal or vertical).
|
2020-06-09 01:09:35 +00:00
|
|
|
#
|
2021-04-30 13:29:11 +00:00
|
|
|
# Kitty users need `allow_remote_control` set to `yes`, and `listen_on` set
|
|
|
|
# to e.g. "$TMPDIR/kitty". To customize the window split, `enabled_layouts`
|
|
|
|
# has to be set to `all` or `splits` (the former is the default value).
|
|
|
|
# This terminal is also able to show images without extra dependencies.
|
2020-06-01 08:42:34 +00:00
|
|
|
#
|
2020-05-06 05:12:29 +00:00
|
|
|
# Shell: POSIX compliant
|
2021-03-20 00:58:46 +00:00
|
|
|
# Authors: Todd Yamakawa, Léo Villeveygoux, @Recidiviste, Mario Ortiz Manero, Luuk van Baal
|
2020-05-05 23:08:10 +00:00
|
|
|
|
2020-06-09 14:57:28 +00:00
|
|
|
SPLIT="$SPLIT" # you can set a permanent split here
|
|
|
|
TERMINAL="$TERMINAL" # same goes for the terminal
|
2020-06-09 01:09:35 +00:00
|
|
|
USE_SCOPE="${USE_SCOPE:-0}"
|
2020-06-10 00:41:57 +00:00
|
|
|
USE_PISTOL="${USE_PISTOL:-0}"
|
2021-03-20 00:58:46 +00:00
|
|
|
PAGER="${PAGER:-less -P?n -R}"
|
2021-03-14 06:53:03 +00:00
|
|
|
TMPDIR="${TMPDIR:-/tmp}"
|
2021-03-20 00:58:46 +00:00
|
|
|
|
2021-04-26 15:21:52 +00:00
|
|
|
startpreview() {
|
|
|
|
NUMPREVIEWTUI="$(($(find "$TMPDIR" -maxdepth 1 -name 'nnn-preview-tui-pagerpid*' 2>/dev/null | wc -l) + 1))"
|
|
|
|
PAGERPID="$TMPDIR/nnn-preview-tui-pagerpid.$NUMPREVIEWTUI"
|
2021-05-14 01:30:27 +00:00
|
|
|
IMGPID="$TMPDIR/nnn-preview-tui-gifpid.$NUMPREVIEWTUI"
|
2021-04-26 15:21:52 +00:00
|
|
|
CURSEL="$TMPDIR/nnn-preview-tui-selection.$NUMPREVIEWTUI"
|
|
|
|
FIFO_UEBERZUG="$TMPDIR/nnn-preview-tui-ueberzug-fifo.$NUMPREVIEWTUI"
|
2020-06-02 08:56:50 +00:00
|
|
|
|
2021-04-26 15:21:52 +00:00
|
|
|
[ "$PAGER" = "most" ] && PAGER="less -R"
|
2020-06-09 01:09:35 +00:00
|
|
|
|
2021-04-26 15:21:52 +00:00
|
|
|
if [ -e "${TMUX%%,*}" ] && tmux -V | grep -q '[ -][3456789]\.'; then
|
|
|
|
TERMINAL=tmux
|
2021-04-27 06:26:52 +00:00
|
|
|
elif [ -n "$KITTY_LISTEN_ON" ]; then
|
2021-04-26 15:21:52 +00:00
|
|
|
TERMINAL=kitty
|
|
|
|
else
|
|
|
|
TERMINAL="${TERMINAL:-xterm}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$SPLIT" ] && [ $(($(tput lines) * 2)) -gt "$(tput cols)" ]; then
|
|
|
|
SPLIT='h'
|
|
|
|
elif [ "$SPLIT" != 'h' ]; then
|
|
|
|
SPLIT='v'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$TERMINAL" = "tmux" ]; then
|
|
|
|
# tmux splits are inverted
|
|
|
|
if [ "$SPLIT" = "v" ]; then SPLIT="h"; else SPLIT="v"; fi
|
|
|
|
|
|
|
|
tmux split-window -e "NNN_FIFO=$NNN_FIFO" -e "PREVIEW_MODE=1" -e "PAGER=$PAGER" \
|
|
|
|
-e "USE_SCOPE=$USE_SCOPE" -e "SPLIT=$SPLIT" -e "USE_PISTOL=$USE_PISTOL" \
|
2021-05-14 01:30:27 +00:00
|
|
|
-e "PAGERPID=$PAGERPID" -e "IMGPID=$IMGPID" -e "CURSEL=$CURSEL" -e "TMPDIR=$TMPDIR" \
|
2021-04-26 15:21:52 +00:00
|
|
|
-e "FIFO_UEBERZUG=$FIFO_UEBERZUG" -e "QLPATH=$QLPATH" -d"$SPLIT" "$0" "$1"
|
|
|
|
elif [ "$TERMINAL" = "kitty" ]; then
|
|
|
|
# Setting the layout for the new window. It will be restored after the
|
|
|
|
# script ends.
|
|
|
|
kitty @ goto-layout splits >/dev/null
|
|
|
|
|
|
|
|
# Trying to use kitty's integrated window management as the split window.
|
|
|
|
# All environmental variables that will be used in the new window must
|
|
|
|
# be explicitly passed.
|
|
|
|
kitty @ launch --no-response --title "nnn preview" --keep-focus \
|
|
|
|
--cwd "$PWD" --env "PATH=$PATH" --env "NNN_FIFO=$NNN_FIFO" \
|
|
|
|
--env "PREVIEW_MODE=1" --env "PAGER=$PAGER" --env "TMPDIR=$TMPDIR" \
|
|
|
|
--env "USE_SCOPE=$USE_SCOPE" --env "SPLIT=$SPLIT" --env "TERMINAL=$TERMINAL"\
|
|
|
|
--env "USE_PISTOL=$USE_PISTOL" --env "PAGERPID=$PAGERPID" \
|
2021-05-14 01:30:27 +00:00
|
|
|
--env "IMGPID=$IMGPID" --env "FIFO_UEBERZUG=$FIFO_UEBERZUG" \
|
2021-04-26 15:21:52 +00:00
|
|
|
--env "CURSEL=$CURSEL" --location "${SPLIT}split" "$0" "$1" >/dev/null
|
|
|
|
elif [ -n "$2" ]; then
|
|
|
|
QUICKLOOK=1 QLPATH="$2" PREVIEW_MODE=1 "$0" "$1" >/dev/null &
|
|
|
|
else
|
2021-05-14 01:30:27 +00:00
|
|
|
PAGERPID="$PAGERPID" IMGPID="$IMGPID" CURSEL="$CURSEL" PREVIEW_MODE=1 \
|
2021-04-26 15:21:52 +00:00
|
|
|
FIFO_UEBERZUG="$FIFO_UEBERZUG" $TERMINAL -e "$0" "$1" 2>/dev/null &
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
togglepreview() {
|
|
|
|
if exists QuickLook.exe; then
|
|
|
|
QLPATH="QuickLook.exe"
|
|
|
|
elif exists Bridge.exe; then
|
|
|
|
QLPATH="Bridge.exe"
|
|
|
|
fi
|
|
|
|
if pkill -fx "cat $NNN_FIFO" >/dev/null; then
|
|
|
|
if [ -n "$QLPATH" ] && stat "$1" >/dev/null 2>&1; then
|
|
|
|
f="$(wslpath -w "$1" 2>&1)" && "$QLPATH" "$f" &
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
startpreview "$1" "$QLPATH"
|
|
|
|
fi
|
|
|
|
}
|
2020-06-09 01:09:35 +00:00
|
|
|
|
|
|
|
exists() {
|
2021-05-14 12:03:28 +00:00
|
|
|
type "$1" >/dev/null 2>&1
|
2020-06-09 01:09:35 +00:00
|
|
|
}
|
|
|
|
|
2020-06-02 08:56:50 +00:00
|
|
|
fifo_pager() {
|
|
|
|
cmd="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
# We use a FIFO to access $PAGER PID in jobs control
|
2021-05-01 11:44:19 +00:00
|
|
|
tmpfifopath="$TMPDIR/nnn-preview-tui-fifo.$$"
|
2020-06-02 08:56:50 +00:00
|
|
|
mkfifo "$tmpfifopath" || return
|
2020-06-01 08:42:34 +00:00
|
|
|
|
2020-06-02 08:56:50 +00:00
|
|
|
$PAGER < "$tmpfifopath" &
|
2021-05-01 11:44:19 +00:00
|
|
|
printf "%s" "$!" > "$PAGERPID"
|
2020-05-05 23:08:10 +00:00
|
|
|
|
2020-06-02 08:56:50 +00:00
|
|
|
(
|
|
|
|
exec > "$tmpfifopath"
|
2021-05-01 11:44:19 +00:00
|
|
|
if [ "$cmd" = "pager" ]; then
|
|
|
|
if exists bat; then
|
2021-05-01 16:12:13 +00:00
|
|
|
bat --terminal-width="$(tput cols)" --paging=never --decorations=always --color=always "$@" 2>/dev/null &
|
2021-05-01 11:44:19 +00:00
|
|
|
else
|
|
|
|
$PAGER "$@" &
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
"$cmd" "$@" &
|
|
|
|
fi
|
2020-06-02 08:56:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
rm "$tmpfifopath"
|
2020-06-01 13:52:16 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 01:09:35 +00:00
|
|
|
# Binary file: show file info inside the pager
|
|
|
|
print_bin_info() {
|
|
|
|
printf -- "-------- \033[1;31mBinary file\033[0m --------\n"
|
|
|
|
if exists mediainfo; then
|
|
|
|
mediainfo "$1" 2>/dev/null
|
|
|
|
else
|
|
|
|
file -b "$1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-05-06 17:25:14 +00:00
|
|
|
preview_file () {
|
|
|
|
clear
|
2020-06-10 00:41:57 +00:00
|
|
|
# Trying to use pistol if it's available.
|
|
|
|
if [ "$USE_PISTOL" -ne 0 ] && exists pistol; then
|
|
|
|
fifo_pager pistol "$1"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2020-06-09 01:09:35 +00:00
|
|
|
# Trying to use scope.sh if it's available.
|
|
|
|
if [ "$USE_SCOPE" -ne 0 ] && exists scope.sh; then
|
|
|
|
fifo_pager scope.sh "$1" "$cols" "$lines" "$(mktemp -d)" \
|
|
|
|
"True" 2>/dev/null
|
|
|
|
return
|
|
|
|
fi
|
2020-05-06 17:25:14 +00:00
|
|
|
|
2021-05-01 11:44:19 +00:00
|
|
|
# Use QuickLook if it's available.
|
|
|
|
if [ -n "$QUICKLOOK" ]; then
|
|
|
|
stat "$1" >/dev/null 2>&1 && f="$(wslpath -w "$1" 2>&1)" && "$QLPATH" "$f" &
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2020-06-10 07:50:38 +00:00
|
|
|
# Detecting the exact type of the file: the encoding, mime type, and
|
|
|
|
# extension in lowercase.
|
2021-03-21 14:03:43 +00:00
|
|
|
encoding="$(file -bL --mime-encoding -- "$1")"
|
|
|
|
mimetype="$(file -bL --mime-type -- "$1")"
|
2020-06-10 07:50:38 +00:00
|
|
|
ext="${1##*.}"
|
|
|
|
if [ -n "$ext" ]; then
|
|
|
|
ext="$(printf "%s" "${ext}" | tr '[:upper:]' '[:lower:]')"
|
|
|
|
fi
|
2021-03-22 00:54:29 +00:00
|
|
|
lines=$(tput lines)
|
2020-06-10 07:50:38 +00:00
|
|
|
cols=$(tput cols)
|
|
|
|
|
2020-06-09 01:09:35 +00:00
|
|
|
# Otherwise, falling back to the defaults.
|
2021-05-01 11:44:19 +00:00
|
|
|
if [ -d "$1" ]; then
|
2020-05-27 23:34:53 +00:00
|
|
|
cd "$1" || return
|
2020-06-09 01:09:35 +00:00
|
|
|
if exists tree; then
|
2021-04-27 19:28:38 +00:00
|
|
|
fifo_pager tree --filelimit "$(find . -maxdepth 1 | wc -l)" -L 3 -C -F --dirsfirst --noreport
|
2020-06-09 01:09:35 +00:00
|
|
|
elif exists exa; then
|
2021-04-21 12:44:38 +00:00
|
|
|
exa -G --colour=always 2>/dev/null
|
2020-06-09 01:09:35 +00:00
|
|
|
else
|
2021-04-27 19:37:18 +00:00
|
|
|
fifo_pager ls -F --directories-first --color=always
|
2020-06-09 01:09:35 +00:00
|
|
|
fi
|
2021-04-26 15:21:52 +00:00
|
|
|
elif [ "${encoding#*)}" = "binary" ]; then
|
2021-03-14 06:53:03 +00:00
|
|
|
if [ "${mimetype%%/*}" = "image" ]; then
|
|
|
|
image_preview "$cols" "$lines" "$1"
|
|
|
|
elif [ "$mimetype" = "application/zip" ]; then
|
2020-06-09 01:09:35 +00:00
|
|
|
fifo_pager unzip -l "$1"
|
2021-03-14 06:53:03 +00:00
|
|
|
elif [ "$ext" = "gz" ] || [ "$ext" = "bz2" ]; then
|
2020-06-09 01:09:35 +00:00
|
|
|
fifo_pager tar -tvf "$1"
|
|
|
|
else
|
|
|
|
fifo_pager print_bin_info "$1"
|
|
|
|
fi
|
2021-03-14 06:53:03 +00:00
|
|
|
elif [ "$mimetype" = "text/troff" ]; then
|
2021-05-01 11:44:19 +00:00
|
|
|
if exists man; then
|
|
|
|
fifo_pager man -Pcat -l "$1"
|
2020-06-09 01:09:35 +00:00
|
|
|
else
|
2021-05-01 11:44:19 +00:00
|
|
|
fifo_pager pager "$1"
|
2020-06-09 01:09:35 +00:00
|
|
|
fi
|
2021-05-01 11:44:19 +00:00
|
|
|
else
|
|
|
|
fifo_pager pager "$1"
|
2020-05-27 23:34:53 +00:00
|
|
|
fi
|
2020-05-06 17:25:14 +00:00
|
|
|
}
|
|
|
|
|
2021-03-14 06:53:03 +00:00
|
|
|
image_preview() {
|
|
|
|
if [ "$TERMINAL" = "kitty" ]; then
|
|
|
|
# Kitty terminal users can use the native image preview method.
|
2021-05-14 01:30:27 +00:00
|
|
|
kitty +kitten icat --silent --place "$1"x"$2"@0x0 --transfer-mode=stream --stdin=no "$3" &
|
|
|
|
printf "%s" "$!" > "$IMGPID"
|
2021-04-23 22:36:05 +00:00
|
|
|
elif [ -n "$QLPATH" ] && stat "$3" >/dev/null 2>&1; then
|
|
|
|
f="$(wslpath -w "$3" 2>&1)" && "$QLPATH" "$f" &
|
2021-03-14 06:53:03 +00:00
|
|
|
elif exists ueberzug; then
|
|
|
|
ueberzug_layer "$1" "$2" "$3"
|
|
|
|
elif exists catimg; then
|
|
|
|
catimg "$3" &
|
2021-05-14 01:30:27 +00:00
|
|
|
printf "%s" "$!" > "$IMGPID"
|
2021-03-14 06:53:03 +00:00
|
|
|
elif exists viu; then
|
|
|
|
viu -t "$3" &
|
2021-05-14 01:30:27 +00:00
|
|
|
printf "%s" "$!" > "$IMGPID"
|
2021-03-14 06:53:03 +00:00
|
|
|
else
|
2021-03-21 01:41:14 +00:00
|
|
|
fifo_pager print_bin_info "$3"
|
2020-05-06 04:24:31 +00:00
|
|
|
fi
|
2021-03-14 06:53:03 +00:00
|
|
|
}
|
2020-05-06 04:24:31 +00:00
|
|
|
|
2021-03-14 06:53:03 +00:00
|
|
|
ueberzug_layer() {
|
2021-04-26 15:21:52 +00:00
|
|
|
printf '{"action": "add", "identifier": "nnn_ueberzug", "x": 0, "y": 0, "width": "%s", "height": "%s", "scaler": "fit_contain", "path": "%s"}\n' "$1" "$2" "$3" > "$FIFO_UEBERZUG"
|
2021-03-14 06:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ueberzug_remove() {
|
|
|
|
printf '{"action": "remove", "identifier": "nnn_ueberzug"}\n' > "$FIFO_UEBERZUG"
|
|
|
|
}
|
2020-05-06 17:25:14 +00:00
|
|
|
|
2021-03-14 06:53:03 +00:00
|
|
|
ueberzug_refresh() {
|
|
|
|
clear
|
2021-05-14 01:30:27 +00:00
|
|
|
kill "$(cat "$IMGPID" 2>/dev/null)" >/dev/null 2>&1
|
2021-03-20 00:58:46 +00:00
|
|
|
pkill -P "$$" >/dev/null 2>&1
|
|
|
|
pkill -f -n preview-tui-ext >/dev/null 2>&1
|
2021-03-14 06:53:03 +00:00
|
|
|
tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser json &
|
2021-04-27 06:26:52 +00:00
|
|
|
printf "\n" > "$NNN_FIFO"
|
2021-04-26 15:21:52 +00:00
|
|
|
preview_fifo 2>/dev/null &
|
2021-05-01 16:12:13 +00:00
|
|
|
preview_file "$(cat "$CURSEL")"
|
2021-03-14 06:53:03 +00:00
|
|
|
wait
|
|
|
|
}
|
|
|
|
|
|
|
|
preview_fifo() {
|
2020-06-09 01:09:35 +00:00
|
|
|
# use cat instead of 'exec <' to avoid issues with dash shell
|
|
|
|
# shellcheck disable=SC2002
|
|
|
|
cat "$NNN_FIFO" |\
|
2021-03-14 06:53:03 +00:00
|
|
|
while read -r selection; do
|
2021-05-14 01:30:27 +00:00
|
|
|
kill "$(cat "$IMGPID" 2>/dev/null)" >/dev/null 2>&1
|
2021-03-20 00:58:46 +00:00
|
|
|
kill "$(cat "$PAGERPID" 2>/dev/null)" >/dev/null 2>&1
|
2021-03-14 06:53:03 +00:00
|
|
|
[ "$TERMINAL" != "kitty" ] && exists ueberzug && ueberzug_remove
|
2020-05-06 17:25:14 +00:00
|
|
|
preview_file "$selection"
|
2021-04-27 06:26:52 +00:00
|
|
|
printf "%s" "$selection" > "$CURSEL"
|
2020-05-05 23:08:10 +00:00
|
|
|
done
|
2021-05-14 01:30:27 +00:00
|
|
|
kill "$(cat "$IMGPID" 2>/dev/null)" >/dev/null 2>&1
|
2021-05-01 16:12:13 +00:00
|
|
|
kill "$(cat "$PAGERPID" 2>/dev/null)" >/dev/null 2>&1
|
|
|
|
[ "$TERMINAL" != "kitty" ] && exists ueberzug && ueberzug_remove
|
2021-05-14 01:30:27 +00:00
|
|
|
rm "$PAGERPID" "$IMGPID" "$CURSEL" "$FIFO_UEBERZUG" >/dev/null 2>&1
|
2021-03-21 01:41:14 +00:00
|
|
|
pkill -P "$$" >/dev/null 2>&1
|
2021-03-14 06:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ "$PREVIEW_MODE" ]; then
|
|
|
|
if [ "$TERMINAL" != "kitty" ] && exists ueberzug; then
|
|
|
|
mkfifo "$FIFO_UEBERZUG"
|
2021-05-01 16:12:13 +00:00
|
|
|
trap 'ueberzug_refresh; rm "$FIFO_UEBERZUG"' WINCH
|
2021-03-14 06:53:03 +00:00
|
|
|
tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser json &
|
|
|
|
fi
|
2021-05-14 01:30:27 +00:00
|
|
|
trap 'rm "$PAGERPID" "$IMGPID" "$CURSEL" "$FIFO_UEBERZUG" 2>/dev/null' INT HUP EXIT
|
2021-03-14 06:53:03 +00:00
|
|
|
|
2021-05-01 16:12:13 +00:00
|
|
|
preview_file "$PWD/$1"
|
|
|
|
printf "%s" "$PWD/$1" > "$CURSEL" &
|
2021-04-26 15:21:52 +00:00
|
|
|
preview_fifo 2>/dev/null &
|
2021-03-14 06:53:03 +00:00
|
|
|
wait
|
2021-04-27 06:26:52 +00:00
|
|
|
else
|
|
|
|
if [ ! -r "$NNN_FIFO" ]; then
|
|
|
|
clear
|
2021-04-30 13:29:11 +00:00
|
|
|
printf "No FIFO available! (\$NNN_FIFO='%s')\nPlease read Usage in preview-tui." "$NNN_FIFO"
|
|
|
|
cfg=$(stty -g); stty raw -echo; head -c 1; stty "$cfg"
|
2021-04-27 06:26:52 +00:00
|
|
|
elif [ "$KITTY_WINDOW_ID" ] && [ -z "$KITTY_LISTEN_ON" ]; then
|
|
|
|
clear
|
2021-04-30 13:29:11 +00:00
|
|
|
printf "\$KITTY_LISTEN_ON not set!\nPlease read Usage in preview-tui."
|
|
|
|
cfg=$(stty -g); stty raw -echo; head -c 1; stty "$cfg"
|
2021-04-27 06:26:52 +00:00
|
|
|
else
|
|
|
|
togglepreview "$1" &
|
|
|
|
fi
|
2020-05-05 23:08:10 +00:00
|
|
|
fi
|