2024-08-12 17:39:56 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
prefix=$HOME/Nextcloud/Papers/
|
|
|
|
|
|
2025-01-10 23:23:09 -08:00
|
|
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | fuzzel -d -w 60)
|
2024-08-12 17:39:56 -07:00
|
|
|
|
2025-01-10 23:23:09 -08:00
|
|
|
test -n "$choice" && zathura $(echo $choice | sed "s/ /_/g;s|^|$prefix|") &
|