From 88748a48006af4e8ec5185336cfeea3aa8f64f63 Mon Sep 17 00:00:00 2001 From: PrivateLalle <29478339+LalleSX@users.noreply.github.com> Date: Tue, 7 Feb 2023 14:51:00 +0100 Subject: Add support for avif in lf (#1262) Co-authored-by: Victor Risgaard --- .config/lf/scope | 3 +++ 1 file changed, 3 insertions(+) (limited to '.config/lf/scope') diff --git a/.config/lf/scope b/.config/lf/scope index 1d83527..87b560a 100755 --- a/.config/lf/scope +++ b/.config/lf/scope @@ -22,6 +22,9 @@ ifub() { # be regenerated once seen. case "$(file --dereference --brief --mime-type -- "$1")" in + image/avif) 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" ] && convert "$1" "$CACHE.jpg" + image "$CACHE.jpg" "$2" "$3" "$4" "$5" "$1" ;; 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 ;; -- cgit v1.3.1