8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/bin/sh
|
|
|
|
book=`find $HOME/Books/ | dmenu -i -l 15`
|
|
if [ ! -z "$book" ]
|
|
then
|
|
zathura "$book"
|
|
fi
|