dotfiles/scripts/.local/bin/papers.sh

8 lines
197 B
Bash
Raw Normal View History

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|") &