summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spliff6
-rwxr-xr-xbin/watch_incoming.sh16
2 files changed, 22 insertions, 0 deletions
diff --git a/bin/spliff b/bin/spliff
new file mode 100755
index 0000000..3767bac
--- /dev/null
+++ b/bin/spliff
@@ -0,0 +1,6 @@
1#!/usr/bin/env zsh
2
3PDF=$1
4OUTPUT="${PDF:r}_spliff.pdf"
5N=`qpdf --show-npages $1`
6qpdf --collate --empty --pages $1 1-$(((N+1)/2)) $1 $(((N+1)/2 + 1))-$N -- $OUTPUT
diff --git a/bin/watch_incoming.sh b/bin/watch_incoming.sh
new file mode 100755
index 0000000..eed1da0
--- /dev/null
+++ b/bin/watch_incoming.sh
@@ -0,0 +1,16 @@
1#!/usr/bin/env bash
2
3TARGET=$HOME/Downloads/toPrint/toPrint_staging
4PROCESSED=$HOME/Downloads/toPrint/toPrint_ready
5SPLIFF=$HOME/bin/spliff
6
7inotifywait -m -e create -e moved_to --format "%f" "${TARGET}" \
8 | while read -r FILENAME
9do
10 THUMB=$(mktemp /tmp/pdf_thumbnail_XXXXXXXXX.png)
11 evince-thumbnailer -s 1024 -l "${TARGET}/${FILENAME}" "${THUMB}"
12 mv "${TARGET}/${FILENAME}" "${PROCESSED}/${FILENAME}"
13 $SPLIFF "${PROCESSED}/${FILENAME}"
14 rm -f "${PROCESSED}/${FILENAME}"
15 dunstify -a "spliff" -I "${THUMB}" "$FILENAME"
16done