pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05026fb
)
use ~/.dmenu_cache if no xdg cache
author
Connor Lane Smith
<cls@lubutu.com>
Mon, 17 Oct 2011 01:12:33 +0000
(
02:12
+0100)
committer
Connor Lane Smith
<cls@lubutu.com>
Mon, 17 Oct 2011 01:12:33 +0000
(
02:12
+0100)
dmenu_run
patch
|
blob
|
history
diff --git
a/dmenu_run
b/dmenu_run
index
2d12243
..
21dc72b
100755
(executable)
--- a/
dmenu_run
+++ b/
dmenu_run
@@
-1,9
+1,12
@@
#!/bin/sh
CACHE=${XDG_CACHE_HOME:-"$HOME/.cache"}/dmenu_run
+if [ ! -d "`dirname "$CACHE"`" ]; then
+ CACHE=$HOME/.dmenu_cache
+fi
(
IFS=:
if test "`ls -dt $PATH "$CACHE" 2> /dev/null | sed 1q`" != "$CACHE"; then
-
mkdir -p "`dirname "$CACHE"`" &&
lsx $PATH | sort -u > "$CACHE"
+ lsx $PATH | sort -u > "$CACHE"
fi
)
cmd=`dmenu "$@" < "$CACHE"` && exec sh -c "$cmd"