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 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | exe=`dmenu_path | dmenu ${1+"$@"}` && exec $exe | 2 | CACHE=${XDG_CACHE_HOME:-"$HOME/.cache"}/dmenu_run |
| 3 | ( | ||
| 4 | IFS=: | ||
| 5 | if test "`ls -dt $PATH "$CACHE" 2> /dev/null | sed 1q`" != "$CACHE"; then | ||
| 6 | mkdir -p "`dirname "$CACHE"`" && lsx $PATH | sort -u > "$CACHE" | ||
| 7 | fi | ||
| 8 | ) | ||
| 9 | cmd=`dmenu "$@" < "$CACHE"` && exec $cmd | ||
