diff options
-rwxr-xr-x | bin/bin/references | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bin/references b/bin/bin/references index a4662d2..209c9f9 100755 --- a/bin/bin/references +++ b/bin/bin/references @@ -1,5 +1,5 @@ #!/bin/bash REF_DIR="$HOME/phd/references" -PDF=$(find $REF_DIR -name "*.pdf" -printf "%P\n") +PDF=$(find $REF_DIR -regex ".*.\(pdf\|djvu\|PDF\|ps\)" -printf "%P\n") TARGET=$(echo "${PDF//"$REF_DIR/"/}" | dmenu -i -p "Open File:") [[ -n $TARGET ]] && exec zathura "$REF_DIR/$TARGET" |