use ~/.dmenu_cache if no xdg cache

This commit is contained in:
Connor Lane Smith 2011-10-17 02:12:33 +01:00
parent 05026fb5ce
commit ca7ef6d2c9
1 changed files with 4 additions and 1 deletions

View File

@ -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"