summaryrefslogtreecommitdiff
path: root/bin/menuscripts/mpdf
blob: 85debfb025e588625064384677e201d9b4f9e78d (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

tmp="/tmp/mpdf"
choice="$(find ${1:-$HOME/docs $HOME/dl} -iname "*.pdf" 2> /dev/null | sort |
	tee "$tmp" |
	sed "s|^$HOME|\~| ; s|\([^/]\)[^/]*/|\1/|g" |
	commander -x -n)"
file="$(sed -n "${choice}p" "$tmp")"
[ -r "$file" ] || exit 1
zathura "$file" &