9 lines
288 B
Bash
Executable file
9 lines
288 B
Bash
Executable file
#!/bin/sh
|
|
|
|
prefix=$HOME/Nextcloud/Books/
|
|
dmenu="bemenu -p books --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
|
|
pdf=zathura
|
|
|
|
choice=$(find $prefix -type f | sed "s|$prefix||;s/_/ /g" | $dmenu)
|
|
|
|
test -n "$choice" && $pdf $(echo $choice | sed "s/ /_/g;s|^|$prefix|") &
|