aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.mk2
-rwxr-xr-xdmenu_path16
-rwxr-xr-xdmenu_run2
3 files changed, 10 insertions, 10 deletions
diff --git a/config.mk b/config.mk
index 3cc8b32..30e8b64 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
1# dmenu version 1# dmenu version
2VERSION = 3.6 2VERSION = 3.7
3 3
4# Customize below to fit your system 4# Customize below to fit your system
5 5
diff --git a/dmenu_path b/dmenu_path
index d0a32c5..a9ddd47 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -3,24 +3,24 @@ CACHE=$HOME/.dmenu_cache
3IFS=: 3IFS=:
4 4
5uptodate() { 5uptodate() {
6 test ! -f $CACHE && return 1 6 test -f "$CACHE" &&
7 for dir in $PATH 7 for dir in $PATH
8 do 8 do
9 test $dir -nt $CACHE && return 1 9 test ! $dir -nt "$CACHE" || return 1
10 done 10 done
11 return 0
12} 11}
13 12
14if ! uptodate 13if ! uptodate
15then 14then
16 for dir in $PATH 15 for dir in $PATH
17 do 16 do
18 for file in "$dir"/* 17 cd "$dir" &&
18 for file in *
19 do 19 do
20 test -x "$file" && echo "${file##*/}" 20 test -x "$file" && echo "$file"
21 done 21 done
22 done | sort | uniq > $CACHE.$$ 22 done | sort -u > "$CACHE".$$ &&
23 mv $CACHE.$$ $CACHE 23 mv "$CACHE".$$ "$CACHE"
24fi 24fi
25 25
26cat $CACHE 26cat "$CACHE"
diff --git a/dmenu_run b/dmenu_run
index 1cecc16..3e1e6e4 100755
--- a/dmenu_run
+++ b/dmenu_run
@@ -1,2 +1,2 @@
1#!/bin/sh 1#!/bin/sh
2exe=`dmenu_path | dmenu $*` && exec $exe 2exe=`dmenu_path | dmenu ${1+"$@"}` && exec $exe