7 lines
195 B
Bash
Executable file
7 lines
195 B
Bash
Executable file
#!/bin/sh
|
|
|
|
prefix=$HOME/Nextcloud/Papers/
|
|
|
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | fuzzel -d -w 80)
|
|
|
|
test -n "$choice" && zathura $(echo $choice | sed "s/ /_/g;s|^|$prefix|")
|