From a69a6dd5dc043390fff3a0c4326ad6672525070f Mon Sep 17 00:00:00 2001 From: Zubarev Grigoriy Date: Fri, 3 Nov 2023 05:16:19 +0300 Subject: [PATCH 1/2] Fix pdf and plain text previws in lf Pdf previws don't appear because are generated with wrong filename. Plain text previws with `bat` don't respect terminal theme and have annoying border. --- .config/lf/scope | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.config/lf/scope b/.config/lf/scope index cc556697..789e03c6 100755 --- a/.config/lf/scope +++ b/.config/lf/scope @@ -13,10 +13,6 @@ image() { fi } -ifub() { - [ -n "$DISPLAY" ] && [ -z "$WAYLAND_DISPLAY" ] && command -V ueberzug >/dev/null 2>&1 -} - # Note that the cache file name is a function of file information, meaning if # an image appears in multiple places across the machine, it will not have to # be regenerated once seen. @@ -32,7 +28,7 @@ case "$(file --dereference --brief --mime-type -- "$1")" in image/*) image "$1" "$2" "$3" "$4" "$5" "$1" ;; text/html) lynx -width="$4" -display_charset=utf-8 -dump "$1" ;; text/troff) man ./ "$1" | col -b ;; - text/* | */xml | application/json | application/x-ndjson) bat --terminal-width "$(($4-2))" -f "$1" ;; + text/* | */xml | application/json | application/x-ndjson) bat -p --theme ansi --terminal-width "$(($4-2))" -f "$1" ;; audio/* | application/octet-stream) mediainfo "$1" || exit 1 ;; video/* ) CACHE="${XDG_CACHE_HOME:-$HOME/.cache}/lf/thumb.$(stat --printf '%n\0%i\0%F\0%s\0%W\0%Y' -- "$(readlink -f "$1")" | sha256sum | cut -d' ' -f1)" @@ -41,7 +37,7 @@ case "$(file --dereference --brief --mime-type -- "$1")" in ;; */pdf) CACHE="${XDG_CACHE_HOME:-$HOME/.cache}/lf/thumb.$(stat --printf '%n\0%i\0%F\0%s\0%W\0%Y' -- "$(readlink -f "$1")" | sha256sum | cut -d' ' -f1)" - [ ! -f "$CACHE.jpg" ] && pdftoppm -jpeg -f 1 -singlefile "$1" "$CACHE" + [ ! -f "$CACHE.jpg" ] && pdftoppm -jpeg -f 1 -singlefile "$1" "$CACHE.jpg" image "$CACHE.jpg" "$2" "$3" "$4" "$5" "$1" ;; */epub+zip|*/mobi*) From 73e65f6660137c22bc109d952e7867e2ecbcc72d Mon Sep 17 00:00:00 2001 From: Zubarev Grigoriy Date: Mon, 13 Nov 2023 20:06:20 +0300 Subject: [PATCH 2/2] Revert pdf cache filename to work properly --- .config/lf/scope | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/lf/scope b/.config/lf/scope index 789e03c6..16fca21e 100755 --- a/.config/lf/scope +++ b/.config/lf/scope @@ -37,7 +37,7 @@ case "$(file --dereference --brief --mime-type -- "$1")" in ;; */pdf) CACHE="${XDG_CACHE_HOME:-$HOME/.cache}/lf/thumb.$(stat --printf '%n\0%i\0%F\0%s\0%W\0%Y' -- "$(readlink -f "$1")" | sha256sum | cut -d' ' -f1)" - [ ! -f "$CACHE.jpg" ] && pdftoppm -jpeg -f 1 -singlefile "$1" "$CACHE.jpg" + [ ! -f "$CACHE.jpg" ] && pdftoppm -jpeg -f 1 -singlefile "$1" "$CACHE" image "$CACHE.jpg" "$2" "$3" "$4" "$5" "$1" ;; */epub+zip|*/mobi*)