all repos — dmenu @ 900d34347bd6d35e965ad54b7b4a3f67128b3a2b

my build of dmenu

dmenu_path

1 2 3 4 5 6 7 8 9
#!/bin/sh
IFS=:
for dir in $PATH
do
	for file in "$dir"/*
	do
		test -x "$file" && echo "${file##*/}"
	done
done | sort | uniq