aboutsummaryrefslogtreecommitdiff
path: root/dmenu_run
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-10-17 02:12:33 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-10-17 02:12:33 +0100
commitca7ef6d2c901b2f302e735da369b730edb3575cf (patch)
treebe298c7997fc8c4ca888e74680f4c967c1c5efd5 /dmenu_run
parent05026fb5ce6dcf7a894e7a31876e1cb30db4b04c (diff)
downloaddmenu-ca7ef6d2c901b2f302e735da369b730edb3575cf.tar.gz
dmenu-ca7ef6d2c901b2f302e735da369b730edb3575cf.tar.bz2
dmenu-ca7ef6d2c901b2f302e735da369b730edb3575cf.zip
use ~/.dmenu_cache if no xdg cache
Diffstat (limited to 'dmenu_run')
-rwxr-xr-xdmenu_run5
1 files changed, 4 insertions, 1 deletions
diff --git a/dmenu_run b/dmenu_run
index 2d12243..21dc72b 100755
--- 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"