using find to handle lots of file oranization

This commit is contained in:
shockrah 2020-03-12 17:40:09 -07:00
parent 17a36aca59
commit 074866f91e

4
bread
View File

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