aboutsummaryrefslogtreecommitdiff
path: root/.scripts/zathura-random-page
diff options
context:
space:
mode:
authorMarvin Borner2023-07-21 15:30:54 +0200
committerMarvin Borner2023-07-21 15:30:54 +0200
commite6e5c70f6cc741e0edee2f0c1de07909d1c91edc (patch)
treefbba9e1f2c69ce1a55734d85985a83bf01ac6f1c /.scripts/zathura-random-page
parentb96beb25dcb0511f38c13b07c44cc929d5fd53ad (diff)
Added random page mapping
Procrastinating from studying, obviously. This helps me study though. Surely it must!
Diffstat (limited to '.scripts/zathura-random-page')
-rwxr-xr-x.scripts/zathura-random-page7
1 files changed, 7 insertions, 0 deletions
diff --git a/.scripts/zathura-random-page b/.scripts/zathura-random-page
new file mode 100755
index 0000000..c8123af
--- /dev/null
+++ b/.scripts/zathura-random-page
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+set -e
+
+MAX="$(pdfinfo "$1" | awk '/^Pages:/ {print $2}')"
+PAGE="$(shuf -i 1-"$MAX" -n 1)"
+xdotool type "${PAGE}G"