2026-01-06 15:27:24 -08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
prefix=$HOME/Nextcloud/Papers/
|
2026-04-05 13:07:02 -07:00
|
|
|
dmenu="bemenu -p papers --center --list 20 down --width-factor 0.5 --border 2 --bdr #fabd2f"
|
2026-04-05 16:46:09 -07:00
|
|
|
pdf=zathura
|
2026-01-06 15:27:24 -08:00
|
|
|
|
|
|
|
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
|
|
|
|
|
|
|
|
|
test -n "$choice" && $pdf $(echo $choice | sed "s/ /_/g;s|^|$prefix|") &
|