about summary refs log tree commit diff stats
path: root/dmenu_path
diff options
context:
space:
mode:
author2019-02-08 16:25:44 -0500
committer2019-02-08 16:25:44 -0500
commit274d4f9a7b074fa99177071f74088787f922c5a0 (patch)
tree43f9170832dde1a15abc2566e191e804d9c5abb3 /dmenu_path
parente60466c0a1687c65491929adb4f4049c20e893cc (diff)
downloaddmenu-274d4f9a7b074fa99177071f74088787f922c5a0.tar.gz
Diffstat (limited to 'dmenu_path')
-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"