all repos — dmenu @ d57c873f104cb8be34299efe70e02df4bf275d92

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