aboutsummaryrefslogtreecommitdiff
path: root/dmenu_path
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu_path')
-rwxr-xr-xdmenu_path34
1 files changed, 17 insertions, 17 deletions
diff --git a/dmenu_path b/dmenu_path
index 3569077..d0a32c5 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -1,26 +1,26 @@
1#!/bin/sh -f 1#!/bin/sh
2CACHE=$HOME/.dmenu_cache 2CACHE=$HOME/.dmenu_cache
3IFS=: 3IFS=:
4 4
5qfind() { 5uptodate() {
6 find "$@" 2>/dev/null 6 test ! -f $CACHE && return 1
7} 7 for dir in $PATH
8 8 do
9uptodate() { 9 test $dir -nt $CACHE && return 1
10 test -f $CACHE && 10 done
11 test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" && 11 return 0
12 ! qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null
13} 12}
14 13
15if ! uptodate 14if ! uptodate
16then 15then
17 { 16 for dir in $PATH
18 echo "$PATH" 17 do
19 qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' | 18 for file in "$dir"/*
20 sed 's,.*/,,' | sort | uniq 19 do
21 } 20 test -x "$file" && echo "${file##*/}"
22 mv $CACHE.$pid $CACHE 21 done
22 done | sort | uniq > $CACHE.$$
23 mv $CACHE.$$ $CACHE
23fi 24fi
24 25
25tail -n +2 $CACHE 26cat $CACHE
26