]> git.armaanb.net Git - dmenu.git/commitdiff
applied anydot's dmenu_path caching patch, thank you!
authorAnselm R. Garbe <arg@suckless.org>
Mon, 14 May 2007 09:56:41 +0000 (11:56 +0200)
committerAnselm R. Garbe <arg@suckless.org>
Mon, 14 May 2007 09:56:41 +0000 (11:56 +0200)
dmenu_path

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