aboutsummaryrefslogtreecommitdiff
path: root/dmenu_path
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu_path')
-rwxr-xr-xdmenu_path4
1 files changed, 2 insertions, 2 deletions
diff --git a/dmenu_path b/dmenu_path
index 94db694..3569077 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -9,7 +9,7 @@ qfind() {
9uptodate() { 9uptodate() {
10 test -f $CACHE && 10 test -f $CACHE &&
11 test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" && 11 test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" &&
12 qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null 12 ! qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null
13} 13}
14 14
15if ! uptodate 15if ! uptodate
@@ -18,7 +18,7 @@ then
18 echo "$PATH" 18 echo "$PATH"
19 qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' | 19 qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' |
20 sed 's,.*/,,' | sort | uniq 20 sed 's,.*/,,' | sort | uniq
21 } > $CACHE.$pid 21 }
22 mv $CACHE.$pid $CACHE 22 mv $CACHE.$pid $CACHE
23fi 23fi
24 24