dotfiles/scripts/.local/bin/books.sh

7 lines
183 B
Bash
Executable file

#!/bin/sh
prefix=$HOME/Nextcloud/Books/
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | fzf)
test -n "$choice" && evince $(echo $choice | sed "s/ /_/g;s|^|$prefix|") &