diff options
author | Marvin Borner | 2023-07-21 15:30:54 +0200 |
---|---|---|
committer | Marvin Borner | 2023-07-21 15:30:54 +0200 |
commit | e6e5c70f6cc741e0edee2f0c1de07909d1c91edc (patch) | |
tree | fbba9e1f2c69ce1a55734d85985a83bf01ac6f1c /.scripts/zathura-random-page | |
parent | b96beb25dcb0511f38c13b07c44cc929d5fd53ad (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-page | 7 |
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" |