use ~/.dmenu_cache if no xdg cache
This commit is contained in:
parent
05026fb5ce
commit
ca7ef6d2c9
@ -1,9 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
CACHE=${XDG_CACHE_HOME:-"$HOME/.cache"}/dmenu_run
|
CACHE=${XDG_CACHE_HOME:-"$HOME/.cache"}/dmenu_run
|
||||||
|
if [ ! -d "`dirname "$CACHE"`" ]; then
|
||||||
|
CACHE=$HOME/.dmenu_cache
|
||||||
|
fi
|
||||||
(
|
(
|
||||||
IFS=:
|
IFS=:
|
||||||
if test "`ls -dt $PATH "$CACHE" 2> /dev/null | sed 1q`" != "$CACHE"; then
|
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
|
fi
|
||||||
)
|
)
|
||||||
cmd=`dmenu "$@" < "$CACHE"` && exec sh -c "$cmd"
|
cmd=`dmenu "$@" < "$CACHE"` && exec sh -c "$cmd"
|
||||||
|
Loading…
Reference in New Issue
Block a user