diff --git a/bread b/bread index b88388e..0ceb794 100755 --- a/bread +++ b/bread @@ -1,7 +1,7 @@ #!/bin/sh -book=`ls $HOME/Books/ | dmenu -i -l 15` +book=`find $HOME/Books/ | dmenu -i -l 15` if [ ! -z "$book" ] then - zathura "$HOME/Books/$book" + zathura "$book" fi