summaryrefslogtreecommitdiff
path: root/bin/downloads
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-04-19 15:24:25 +0100
committerUrbain Vaes <urbain@vaes.uk>2016-04-19 15:24:25 +0100
commite146e947c52ac4adbe426b3f893faff1e46ed5f8 (patch)
tree1605bf4eb78cc619988c92632f3cee2a56143fd5 /bin/downloads
parent83bd503208d45fa837348441196dd07223b13e3e (diff)
Use GNU stow for dotfiles management
Diffstat (limited to 'bin/downloads')
-rwxr-xr-xbin/downloads5
1 files changed, 0 insertions, 5 deletions
diff --git a/bin/downloads b/bin/downloads
deleted file mode 100755
index c4c306e..0000000
--- a/bin/downloads
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-DOWNLOAD_DIR="$HOME/Downloads"
-PDF=$(ls -t $DOWNLOAD_DIR/*.pdf)
-TARGET=$(echo "${PDF//"$DOWNLOAD_DIR/"/}" | dmenu -i -p "Open File:")
-[[ -n $TARGET ]] && zathura "$DOWNLOAD_DIR/$TARGET" &