all repos — dmenu @ 64697cdd0c25ee19413a57d723c1bcaff883f122

my build of dmenu

dmenu_path

#!/bin/sh
CACHE=$HOME/.dmenu_cache
UPTODATE=1
IFS=:

if test ! -f $CACHE 
then
	unset UPTODATE
fi

if test $UPTODATE
then
	for dir in $PATH
	do
		test $dir -nt $CACHE && unset UPTODATE
	done
fi

if test ! $UPTODATE
then
	for dir in $PATH
	do
		for file in "$dir"/*
		do
			test -x "$file" && echo "${file##*/}"
		done
	done | sort | uniq > $CACHE
fi

cat $CACHE