mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
7 lines
208 B
Bash
Executable File
7 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
filepath="$(shuf --head-count=1)"
|
|
pages="$(pdfinfo "$filepath" | awk '/^Pages:/{print $2}')"
|
|
random_page="$(shuf --input-range="1-$pages" --head-count=1)"
|
|
zathura --page="$random_page" "$filepath"
|