summaryrefslogtreecommitdiff
path: root/.prefix/bin/x-pdf
blob: 020ff7e451e0bb957f44ac963fdab01805fb4a4b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if   [ -x "`which okular 2>/dev/null`" ]; then
	okular "$@"
if   [ -x "`which evince 2>/dev/null`" ]; then
	evince "$@"
elif [ -x "`which xpdf 2>/dev/null`" ]; then
	xpdf "$@"
fi