i3: dmenu directory browser

This commit is contained in:
Tobias Manske 2019-11-03 21:19:26 +01:00
parent 876801a88d
commit 589a23539a
No known key found for this signature in database
GPG Key ID: 978D99F12D4E041F

15
i3/scripts/dir_dmenu.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
if [[ $# != 1 ]] || [[ ! -e "$1" ]]; then
echo "usage: $0 folder"
fi
if [[ -f "$1" ]]; then
xdg-open "$1" &
exit 0
fi
DIRS=$(find -L "$1" -mindepth 1 -maxdepth 1 -type d | rev | cut -d "/" -f1 | rev)
FILES=$(find -L "$1" -mindepth 1 -maxdepth 1 -type f| rev | cut -d "/" -f1 | rev)
echo "$DIRS$FILES" | dmenu | xargs -I"{}" $0 "$1/{}"