27 lines
724 B
Bash
Executable file
27 lines
724 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# ***This script was made by Clay Gomera (Drake)***
|
|
# - Description: A simple script for file editing in dmenu
|
|
# - Dependencies: dmenu, fd
|
|
|
|
##########
|
|
## main ##
|
|
##########
|
|
cd "$HOME" || exit 0
|
|
file=1
|
|
while [ "$file" ]; do
|
|
file=$(fd -LHpd 1 | dmenu -i -l 10 -p " Open file in text editor $(basename "$(pwd)")")
|
|
if [ -e "$file" ]; then
|
|
owd=$(pwd)
|
|
if [ -d "$file" ]; then
|
|
cd "$file" || exit 0
|
|
else [ -f "$file" ]
|
|
if [ "$file" ]; then
|
|
$VISUAL "$owd/$file" & # $VISUAL reffers to a global variable set in .xinitrc/.bash_profile
|
|
exit 0
|
|
else
|
|
exit 0
|
|
fi
|
|
fi
|
|
fi
|
|
done
|