This commit is contained in:
Derek Taylor 2019-11-10 18:34:58 -06:00
commit e9999ec202
1 changed files with 8 additions and 8 deletions

10
new.sh
View File

@ -7,15 +7,15 @@
#
# This is a test script
myDir='/home/dt/test/'
myDir="$HOME/test/"
dirOptions=$(cd ${myDir} && /bin/ls -d */ | cut -d " " -f 1)
dirChoice=$(echo -e "${dirOptions[@]}\nquit" | dmenu -i -p 'My directories: ')
if [ "$dirChoice" == "quit" ]; then
echo "Program terminated."
elif [ "$dirChoice" == ${dirChoice} ]; then
fileOptions=$(cd ${myDir}${dirChoice} && /bin/ls -Ap | cut -d " " -f 1 | grep -v / )
fileChoice=$(echo -e "${fileOptions[@]}" | dmenu -i -l 15 -p 'Edit this file: ')
exec emacsclient -c ${myDir}${dirChoice}${fileChoice}
elif [ -n "$dirChoice" ]; then
fileChoice=$(/bin/ls ${myDir}'/'${dirChoice} -Apb | cut -d " " -f 1 | \
grep -v / | dmenu -i -l 15 -p 'Edit this file: ')
[ -n "$fileChoice" ] && exec emacsclient -c ${myDir}${dirChoice}${fileChoice}
fi