summaryrefslogtreecommitdiff
path: root/bin/xopen
diff options
context:
space:
mode:
Diffstat (limited to 'bin/xopen')
-rwxr-xr-xbin/xopen9
1 files changed, 0 insertions, 9 deletions
diff --git a/bin/xopen b/bin/xopen
deleted file mode 100755
index a133a47..0000000
--- a/bin/xopen
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/bash
-cd ~
-PDF=$(locate "$HOME/*.pdf")
-DJVU=$(locate "$HOME/*.djvu")
-RESULTS="$PDF
-$DJVU"
-TARGET=$(echo "${RESULTS//"$HOME/"/}" | dmenu -i -p "Open File:" | tr -d '[[:space:]]')
-[[ -n $TARGET ]] || exit
-xdg-open "$TARGET" &