dotfiles/i3/scripts/dir_dmenu.sh

16 lines
368 B
Bash
Raw Normal View History

2019-11-03 21:19:26 +01:00
#!/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)
2019-11-03 21:21:18 +01:00
echo -e "$DIRS\n$FILES" | dmenu | xargs -I"{}" $0 "$1/{}"