summaryrefslogtreecommitdiffstats
path: root/.config/lf/scope
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2024-07-15 13:02:59 -0400
committerLuke Smith <luke@lukesmith.xyz>2024-07-15 13:02:59 -0400
commit6556ef5c4d78b55d80b5e59f187d7a39f973afa0 (patch)
tree6c0534c35586d25ac6245af895d40ecc70cc8e15 /.config/lf/scope
parent475e4abb4084008198f1d9a23de6450e02b074a9 (diff)
downloadeibhear-6556ef5c4d78b55d80b5e59f187d7a39f973afa0.tar.gz
eibhear-6556ef5c4d78b55d80b5e59f187d7a39f973afa0.tar.zst
eibhear-6556ef5c4d78b55d80b5e59f187d7a39f973afa0.zip
close #1423
Diffstat (limited to '.config/lf/scope')
-rwxr-xr-x.config/lf/scope6
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/lf/scope b/.config/lf/scope
index 0d1e673..332b07e 100755
--- a/.config/lf/scope
+++ b/.config/lf/scope
@@ -19,11 +19,11 @@ image() {
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"
+ [ ! -f "$CACHE" ] && magick "$1" "$CACHE.jpg"
image "$CACHE.jpg" "$2" "$3" "$4" "$5" "$1" ;;
image/vnd.djvu)
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" ] && djvused "$1" -e 'select 1; save-page-with /dev/stdout' | convert -density 200 - "$CACHE.jpg" > /dev/null 2>&1
+ [ ! -f "$CACHE" ] && djvused "$1" -e 'select 1; save-page-with /dev/stdout' | magick -density 200 - "$CACHE.jpg" > /dev/null 2>&1
image "$CACHE.jpg" "$2" "$3" "$4" "$5" "$1" ;;
image/svg+xml)
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)"
@@ -32,7 +32,7 @@ image/svg+xml)
;;
image/x-xcf)
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 | awk '{print $1}')"
- [ ! -f "$CACHE.jpg" ] && convert "$1[0]" "$CACHE.jpg"
+ [ ! -f "$CACHE.jpg" ] && magick "$1[0]" "$CACHE.jpg"
image "$CACHE.jpg" "$2" "$3" "$4" "$5" "$1"
;;
image/*) image "$1" "$2" "$3" "$4" "$5" "$1" ;;