summary refs log tree commit diff
path: root/renderpdf
blob: f30bdbf9ba712ce63f11e08982b08e6a3d728400 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
#
# View document as rendered PDF

if [[ $1 == *.pdf ]]; then
  zathura --fork "$1"
else
  pandoc -tpdf -o- "$1" | zathura --fork -
fi