This repository has been archived on 2020-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
launcher/dmenufm

10 lines
197 B
Bash
Executable File

#!/bin/sh
while true; do
choice=`ls -a | dmenu`;
[ -d $choice ] && cd $choice;
[ -f $choice ] && printf "%s\n" "$choice" && exit 0;
[ "$choice" = '!quit' ] && exit 0;
done
exit 1;