This commit is contained in:
frosty 2024-08-25 01:58:24 -04:00
parent f8e08d3e26
commit e2abfd4c09
4 changed files with 119 additions and 0 deletions

3
.config/lf/cleaner Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
ueberzugpp cmd -s "$UB_SOCKET" -a remove -i PREVIEW

2
.config/lf/lfrc Normal file
View file

@ -0,0 +1,2 @@
set previewer ~/.config/lf/previewer
set cleaner ~/.config/lf/cleaner

85
.config/lf/previewer Executable file
View file

@ -0,0 +1,85 @@
#!/bin/sh
XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
true_input_path="$(readlink -f "$1")"
image() {
file_path="$1"
mw="$(($2 - 1))"
mh="$3"
x="$4"
y="$5"
ueberzugpp cmd -s "$UB_SOCKET" -a add -i PREVIEW -x "$x" -y "$y" --max-width "$mw" --max-height "$mh" -f "$file_path"
exit 1
}
plaintext() {
if command -v bat >/dev/null 2>&1; then
bat --color=never --style=numbers --pager=never "$@"
else
cat "$@"
fi
}
generate_cache_path() {
while IFS=' ' read -r thumbnail _; do
printf '%s' "$thumbnail"
done <<EOF
$XDG_CACHE_HOME/lf/thumbnail.$(stat --printf '%n\0%i\0%F\0%s\0%W\0%Y' "$true_input_path" | sha256sum).jpg
EOF
}
case "$(printf '%s' "$true_input_path" | tr '[:upper:]' '[:lower:]')" in
*.tgz | *.tar.gz)
tar tzf "$1"
;;
*.tar.bz2 | *.tbz2)
tar tjf "$1"
;;
*.tar.txz | *.txz)
xz -l "$1"
;;
*.tar)
tar tf "$1"
;;
*.zip | *.jar)
unzip -l "$1"
;;
*.rar)
unrar l "$1"
;;
*.7z)
7z l "$1"
;;
*.iso)
iso-info --no-header -l "$1"
;;
*.wav | *.mp3 | *.flac | *.m4a | *.ogg | *.opus)
exiftool "$1"
;;
*.avi | *.mp4 | *.mkv | *.mov | *.webm | *.m4v)
shift
thumbnail="$(generate_cache_path)"
[ -f "$thumbnail" ] || ffmpegthumbnailer -i "$true_input_path" -o "$thumbnail" -s 0 -q 5
image "$thumbnail" "$@"
;;
*.bmp | *.jpg | *.jpeg | *.png | *.xpm | *.webp | *.gif)
shift
image "$true_input_path" "$@"
;;
*.svg)
shift
thumbnail="$(generate_cache_path)"
[ -f "$thumbnail" ] || convert "$true_input_path" "$thumbnail"
image "$thumbnail" "$@"
;;
*.[1-8])
man "$1" | col -b
;;
*)
plaintext "$@"
;;
esac

29
.local/bin/lfub Executable file
View file

@ -0,0 +1,29 @@
#!/bin/sh
XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
UEBERZUG_TMP_DIR="${UEBERZUG_TMP_DIR:-/tmp}"
UB_PID=
UB_SOCKET=
cleanup() {
exec 3>&-
ueberzugpp cmd -s "$UB_SOCKET" -a exit
}
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
lf "$@"
else
[ -d "$XDG_CACHE_HOME/lf" ] || mkdir -p "$XDG_CACHE_HOME/lf"
UB_PID_FILE="$UEBERZUG_TMP_DIR/.$(uuidgen)"
ueberzugpp layer --silent --no-stdin --use-escape-codes --pid-file "$UB_PID_FILE"
read -r UB_PID <"$UB_PID_FILE"
rm "$UB_PID_FILE"
UB_SOCKET="$UEBERZUG_TMP_DIR/ueberzugpp-$UB_PID.socket"
export UB_PID UB_SOCKET
trap cleanup HUP INT QUIT TERM EXIT
lf "$@" 3>&-
fi