aboutsummaryrefslogtreecommitdiff
path: root/dmenu_path
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu_path')
-rwxr-xr-xdmenu_path10
1 files changed, 6 insertions, 4 deletions
diff --git a/dmenu_path b/dmenu_path
index e590a5c..e725ede 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -3,20 +3,22 @@ CACHE=$HOME/.dmenu_cache
3UPTODATE=1 3UPTODATE=1
4IFS=: 4IFS=:
5 5
6uptodate() { [ $UPTODATE -eq 1 ]; }
7
6if test ! -f $CACHE 8if test ! -f $CACHE
7then 9then
8 unset UPTODATE 10 UPTODATE=0
9fi 11fi
10 12
11if test $UPTODATE 13if uptodate
12then 14then
13 for dir in $PATH 15 for dir in $PATH
14 do 16 do
15 test $dir -nt $CACHE && unset UPTODATE 17 test $dir -nt $CACHE && { UPTODATE=0; break; }
16 done 18 done
17fi 19fi
18 20
19if test ! $UPTODATE 21if ! uptodate
20then 22then
21 for dir in $PATH 23 for dir in $PATH
22 do 24 do