diff options
| author | Connor Lane Smith <cls@lubutu.com> | 2011-06-23 20:27:28 +0100 |
|---|---|---|
| committer | Connor Lane Smith <cls@lubutu.com> | 2011-06-23 20:27:28 +0100 |
| commit | 49672e9d05540fdde14af64723f2f861918031d4 (patch) | |
| tree | 7db74351d23db0b1fa057a51f0afaf2c11cc40e9 /dmenu_run | |
| parent | f7cbe710a266448122d89a02b8ba8c70423fc750 (diff) | |
| parent | 07d452e0c8b158e571fb0adf528897829850ecf5 (diff) | |
merge lsx -> default
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 | ||
