rice/bread

8 lines
98 B
Bash
Executable File

#!/bin/sh
book=`find $HOME/Books/ | dmenu -i -l 15`
if [ ! -z "$book" ]
then
zathura "$book"
fi