all repos — dmenu @ 03c2b05bb2265e0ef7ba33b7f6df36bd6e0ce54d

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