dotfiles/.local/share/qutebrowser/userscripts/pagetopdf.sh
Marty Oehme 66cdb395aa [qutebrowser] add printing to pdf
Use command page-to-pdf or shortcut gp to print current page to pdf and
save it to default download directory.

Fixes #66
2019-12-25 11:22:06 +01:00

11 lines
381 B
Bash
Executable file

#! /usr/bin/bash
# Download current page as pdf file
# use title of current page / selected text as filename
filename=${QUTE_SELECTED_TEXT:-$QUTE_TITLE}
# revert to default name if nothing else is set; remove special chars
filename=$(echo ${filename:-downloaded.pdf} | sed 's/[<>,/]/_/g')
# print to pdf
echo "print --pdf '$QUTE_DOWNLOAD_DIR/${1:-$filename}.pdf'" >>"$QUTE_FIFO"