diff options
Diffstat (limited to '.local/bin/x-pdf')
-rwxr-xr-x | .local/bin/x-pdf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.local/bin/x-pdf b/.local/bin/x-pdf new file mode 100755 index 0000000..a9893c0 --- /dev/null +++ b/.local/bin/x-pdf @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ -x "`which okular 2>/dev/null`" ]; then + okular "$@" +elif [ -x "`which evince 2>/dev/null`" ]; then + evince "$@" +elif [ -x "`which xpdf 2>/dev/null`" ]; then + xpdf "$@" +fi |