diff options
author | Connor Lane Smith <cls@lubutu.com> | 2011-10-17 02:12:33 +0100 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2011-10-17 02:12:33 +0100 |
commit | ca7ef6d2c901b2f302e735da369b730edb3575cf (patch) | |
tree | be298c7997fc8c4ca888e74680f4c967c1c5efd5 | |
parent | 05026fb5ce6dcf7a894e7a31876e1cb30db4b04c (diff) |
use ~/.dmenu_cache if no xdg cache
-rwxr-xr-x | dmenu_run | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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" |