From 074866f91e6ce2d8ea966deb1310a30fe873d1c2 Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 12 Mar 2020 17:40:09 -0700 Subject: [PATCH] using find to handle lots of file oranization --- bread | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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