summaryrefslogtreecommitdiff
path: root/util/rdpdf
blob: 65c8d9b3262ad84b8732d0a21ca4fb9790dd2adc (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
# Locate PDFs and read them.
# Requires: locate, fzf, zathura.

f="$(locate .pdf | fzf)"
[ -z "$f" ] && exit
zathura "$f"