aboutsummaryrefslogtreecommitdiff
path: root/.config/lf/scope
diff options
context:
space:
mode:
Diffstat (limited to '.config/lf/scope')
-rwxr-xr-x.config/lf/scope13
1 files changed, 0 insertions, 13 deletions
diff --git a/.config/lf/scope b/.config/lf/scope
deleted file mode 100755
index b79c4b6..0000000
--- a/.config/lf/scope
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-case "$(file -Lb --mime-type -- "$1")" in
- image/*)
- chafa -f sixel -s "$2x$3" --animate off --polite on "$1"
- exit 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)"
- [ ! -f "$CACHE" ] && ffmpegthumbnailer -i "$1" -o "$CACHE" -s 0
- chafa -f sixel -s "$2x$3" --animate off --polite on "$CACHE"
-esac