From 21ee3489c29236a9197b6746f97f1c9f81bd0a48 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 5 May 2019 20:56:37 +0530 Subject: [PATCH] Add pdfview to view PDF file in PAGER --- plugins/README.md | 1 + plugins/pdfview | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100755 plugins/pdfview diff --git a/plugins/README.md b/plugins/README.md index 544d2b89..5bd213a3 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -13,6 +13,7 @@ | nmount | sh | pmount | Toggle mount status of a device as normal user | | nwal | sh | nitrogen | Set the selected image as wallpaper using nitrogen | | pastebin | sh | [pastebinit](https://launchpad.net/pastebinit) | Paste contents of current (text) file to paste.ubuntu.com | +| pdfview | sh | pdftotext, `$PAGER` | View current PDF file | | picker | sh | nnn | Pick files and pipe the newline-separated list to another utility | | pywal | sh | pywal | Set selected image as wallpaper, change terminal color scheme | | sxiv | sh | sxiv | Browse images in a dir in sxiv, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts))| diff --git a/plugins/pdfview b/plugins/pdfview new file mode 100755 index 00000000..20884d45 --- /dev/null +++ b/plugins/pdfview @@ -0,0 +1,12 @@ +#!/usr/bin/env sh + +# Description: View a PDF file in pager +# +# Shell: POSIX compliant +# Author: Arun Prakash Jana + +if ! [ -z "$1" ]; then + if [ $(head -c 4 "$1") = "%PDF" ]; then + pdftotext -nopgbrk -layout "$1" - | sed 's/\xe2\x80\x8b//g' | $PAGER + fi +fi