all repos — dmenu @ 8ec1b41cacb33be39bc53fc67a4fe51d2d3ab3a0

my build of dmenu

dmenu_path

1 2 3 4 5 6 7 8 9
#!/bin/sh
CACHE=$HOME/.dmenu_cache
IFS=:

if ! test -f "$CACHE" || find $PATH -type d -newer "$CACHE" | grep -q .; then
	lsx $PATH | sort -u > "$CACHE"
fi

cat "$CACHE"