#!/bin/bash book=$(ls $HOME/Books/ | dmenu -i -l 15) if [ -z "$book" ] then exit 0 else zathura "$HOME/Books/$book" fi #zathura "$HOME/Books/$book"