aboutsummaryrefslogtreecommitdiff
path: root/.scripts/zathura-random-page
blob: c8123af7d2431a91930539aed7f77eb1b967e910 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

set -e

MAX="$(pdfinfo "$1" | awk '/^Pages:/ {print $2}')"
PAGE="$(shuf -i 1-"$MAX" -n 1)"
xdotool type "${PAGE}G"