diff options
author | Connor Lane Smith <cls@lubutu.com> | 2011-06-13 21:50:31 +0100 |
---|---|---|
committer | Connor Lane Smith <cls@lubutu.com> | 2011-06-13 21:50:31 +0100 |
commit | eadf090413c530e69e8568492ebeb4b4087bd2ad (patch) | |
tree | cce8671f1d59e40a0bdc0be6c9ef379812ff8010 /dmenu_run | |
parent | 8ec1b41cacb33be39bc53fc67a4fe51d2d3ab3a0 (diff) |
new dmenu_run
Diffstat (limited to 'dmenu_run')
-rwxr-xr-x | dmenu_run | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,2 +1,9 @@ #!/bin/sh -exe=`dmenu_path | dmenu ${1+"$@"}` && exec $exe +CACHE=${XDG_CACHE_HOME:-"$HOME/.cache"}/dmenu_run +( + IFS=: + if test "`ls -dt $PATH "$CACHE" 2> /dev/null | sed 1q`" != "$CACHE"; then + mkdir -p "`dirname "$CACHE"`" && lsx $PATH | sort -u > "$CACHE" + fi +) +cmd=`dmenu "$@" < "$CACHE"` && exec $cmd |