diff options
Diffstat (limited to 'dmenu_path')
-rwxr-xr-x | dmenu_path | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -1,26 +1,26 @@ | |||
1 | #!/bin/sh -f | 1 | #!/bin/sh |
2 | CACHE=$HOME/.dmenu_cache | 2 | CACHE=$HOME/.dmenu_cache |
3 | IFS=: | 3 | IFS=: |
4 | 4 | ||
5 | qfind() { | 5 | uptodate() { |
6 | find "$@" 2>/dev/null | 6 | test ! -f $CACHE && return 1 |
7 | } | 7 | for dir in $PATH |
8 | 8 | do | |
9 | uptodate() { | 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 | ||
15 | if ! uptodate | 14 | if ! uptodate |
16 | then | 15 | then |
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 | ||
23 | fi | 24 | fi |
24 | 25 | ||
25 | tail -n +2 $CACHE | 26 | cat $CACHE |
26 | |||