utils/sh/tmenu_run

13 lines
225 B
Plaintext
Raw Normal View History

2022-07-05 19:08:31 +00:00
#!/bin/sh
tmenu_path () {
IFS=" :"
for i in $PATH; do
for j in "$i"/*; do
[ -f "$j" ] && [ -x "$j" ] && printf "%s\n" "$j"
2022-07-05 19:08:31 +00:00
done
done
}
tmenu_path | tmenu "$@" | ${SHELL:-"/bin/sh"} &