2024-08-12 17:39:56 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
prefix=$HOME/Nextcloud/Papers/
|
2025-05-15 10:38:03 -07:00
|
|
|
dmenu="bemenu -p papers --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
|
2025-05-12 00:02:45 -07:00
|
|
|
pdf=zathura
|
2024-08-12 17:39:56 -07:00
|
|
|
|
2025-05-11 18:58:28 -07:00
|
|
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
2024-08-12 17:39:56 -07:00
|
|
|
|
2025-05-11 18:58:28 -07:00
|
|
|
test -n "$choice" && $pdf $(echo $choice | sed "s/ /_/g;s|^|$prefix|") &
|