summaryrefslogtreecommitdiff
path: root/bin/dmscripts/dmfm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dmscripts/dmfm')
-rwxr-xr-xbin/dmscripts/dmfm17
1 files changed, 0 insertions, 17 deletions
diff --git a/bin/dmscripts/dmfm b/bin/dmscripts/dmfm
deleted file mode 100755
index 34a9e2c..0000000
--- a/bin/dmscripts/dmfm
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-file=1
-while [ "$file" ]; do
- file=$(ls -1 --group-directories-first | dmenu -i -l 8 -g 1 -p "$(basename $(pwd)):")
- if [ -e "$file" ]; then
- owd=$(pwd)
- if [ -d "$file" ]; then
- cd "$file"
- else [ -f "$file" ]
- if which xdg-open &> /dev/null; then
- exec xdg-open "$owd/$file" &
- unset file
- fi
- fi
- fi
-done