applied anydot's dmenu_path caching patch, thank you!

This commit is contained in:
Anselm R. Garbe 2007-05-14 11:56:41 +02:00
parent aa2f73fc88
commit 4042a11e51
1 changed files with 26 additions and 5 deletions

View File

@ -1,9 +1,30 @@
#!/bin/sh #!/bin/sh
CACHE=$HOME/.dmenu_cache
UPTODATE=1
IFS=: IFS=:
for dir in $PATH
do if test ! -f $CACHE
for file in "$dir"/* then
unset UPTODATE
fi
if test $UPTODATE
then
for dir in $PATH
do do
test -x "$file" && echo "${file##*/}" test $dir -nt $CACHE && unset UPTODATE
done done
done | sort | uniq 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