diff options
author | Quentin Rameau <quinq@fifth.space> | 2018-07-21 12:47:43 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-07-21 12:49:00 +0200 |
commit | bbc464dc80225b8cf9390f14fac6c682f63940d2 (patch) | |
tree | 2cf6347f2f2f01a1ed8a91a7f49a37db4bf2950f | |
parent | a314412f4b80af5100901344856a341f8ea4cc7a (diff) |
dmenu_path: always use the cachedir
-rw-r--r-- | dmenu_path | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,10 +1,10 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | cachedir=${XDG_CACHE_HOME:-"$HOME/.cache"} | 2 | |
3 | if [ -d "$cachedir" ]; then | 3 | cachedir="${XDG_CACHE_HOME:-"$HOME/.cache"}" |
4 | cache=$cachedir/dmenu_run | 4 | cache="$cachedir/dmenu_run" |
5 | else | 5 | |
6 | cache=$HOME/.dmenu_cache # if no xdg dir, fall back to dotfile in ~ | 6 | [ ! -e "$cachedir" ] && mkdir -p "$cachedir" |
7 | fi | 7 | |
8 | IFS=: | 8 | IFS=: |
9 | if stest -dqr -n "$cache" $PATH; then | 9 | if stest -dqr -n "$cache" $PATH; then |
10 | stest -flx $PATH | sort -u | tee "$cache" | 10 | stest -flx $PATH | sort -u | tee "$cache" |