summaryrefslogtreecommitdiff
path: root/bin/books
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2015-10-09 17:26:07 +0100
committerUrbain Vaes <urbain@vaes.uk>2015-10-09 17:26:07 +0100
commit777498e2ed6db0426b1366fe218bea905c881439 (patch)
tree122d7ea93e65a1be00421e86195096cdcb5713bd /bin/books
parentf2c1c49654862c14b214e91d9b40eabed255f3af (diff)
Add shortcut to run any script from bin
Diffstat (limited to 'bin/books')
-rwxr-xr-xbin/books5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/books b/bin/books
new file mode 100755
index 0000000..8524277
--- /dev/null
+++ b/bin/books
@@ -0,0 +1,5 @@
+#!/bin/bash
+BOOKS_DIR="$HOME/Dropbox/books"
+PDF=$(locate "$BOOKS_DIR/*.pdf")
+TARGET=$(echo "${PDF//"$BOOKS_DIR/"/}" | dmenu -i -p "Open File:")
+[[ -n $TARGET ]] && zathura "$BOOKS_DIR/$TARGET" &