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/dmenu_run

12 lines
218 B
Bash
Executable File

#!/bin/sh
dmenu_path () {
IFS=" :"
for i in $PATH; do
for j in "$i"/*; do
[ -f $j ] && [ -x $j ] && printf "%s\n" $j
done
done
}
dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &