aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2018-07-21 12:47:43 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-07-21 12:49:00 +0200
commitbbc464dc80225b8cf9390f14fac6c682f63940d2 (patch)
tree2cf6347f2f2f01a1ed8a91a7f49a37db4bf2950f
parenta314412f4b80af5100901344856a341f8ea4cc7a (diff)
downloaddmenu-bbc464dc80225b8cf9390f14fac6c682f63940d2.tar.gz
dmenu-bbc464dc80225b8cf9390f14fac6c682f63940d2.tar.bz2
dmenu-bbc464dc80225b8cf9390f14fac6c682f63940d2.zip
dmenu_path: always use the cachedir
-rw-r--r--dmenu_path12
1 files changed, 6 insertions, 6 deletions
diff --git a/dmenu_path b/dmenu_path
index 338bac4..3a7cda7 100644
--- a/dmenu_path
+++ b/dmenu_path
@@ -1,10 +1,10 @@
#!/bin/sh
-cachedir=${XDG_CACHE_HOME:-"$HOME/.cache"}
-if [ -d "$cachedir" ]; then
- cache=$cachedir/dmenu_run
-else
- cache=$HOME/.dmenu_cache # if no xdg dir, fall back to dotfile in ~
-fi
+
+cachedir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
+cache="$cachedir/dmenu_run"
+
+[ ! -e "$cachedir" ] && mkdir -p "$cachedir"
+
IFS=:
if stest -dqr -n "$cache" $PATH; then
stest -flx $PATH | sort -u | tee "$cache"