remove pdflist, it's bad

This commit is contained in:
speedie 2023-05-07 02:26:21 +02:00
parent 1e47c98265
commit 589983db68

View file

@ -1,27 +0,0 @@
#!/bin/sh
c="$(find *.pdf -type f | wc -l)"
i=1
[ -z "$prefix" ] && prefix="/tmp/.list_pdfs"; mkdir -p ${prefix}
[ -z "$RUNLAUNCHER" ] && RUNLAUNCHER="spmenu"
[ -z "$RUNLAUNCHER_ARGS" ] && RUNLAUNCHER_ARGS="--lines 40 --columns 1 --image-size 400 --no-generate-cache"
print_list() {
while true; do
file="$(find *.pdf -type f | sed -n "$i","$i"p | grep pdf)"
[ ! -f "$file" ] && continue
pdftoppm -jpeg -f 1 -singlefile "$file" > "${prefix}/file-$i.jpg"
[ -f "$prefix/file-$i.jpg" ] && imageprefix="IMG:" && image="$prefix/file-$i.jpg"
printf "%s%s\t%s\n" "$imageprefix" "$image" "$file"
# ++
[ "$i" = "$c" ] || [ "$i" -gt "$c" ] && break;
i="$(expr $i + 1)"
done
}
sel_file="$(print_list | sed "s/\&/\&/g" | $RUNLAUNCHER $RUNLAUNCHER_ARGS | sed "s/\&/\&/g")"
[ -n "$sel_file" ] && zathura "$sel_file"