Browse Source

applied anydot's dmenu_path caching patch, thank you!

master
Anselm R. Garbe 18 years ago
parent
commit
4042a11e51
  1. 23
      dmenu_path

23
dmenu_path

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

Loading…
Cancel
Save