[hackers] [dmenu] dmenu_path: always use the cachedir || Quentin Rameau

From: <git_AT_suckless.org>
Date: Sat, 21 Jul 2018 12:50:25 +0200 (CEST)

commit bbc464dc80225b8cf9390f14fac6c682f63940d2
Author: Quentin Rameau <quinq_AT_fifth.space>
AuthorDate: Sat Jul 21 12:47:43 2018 +0200
Commit: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
CommitDate: Sat Jul 21 12:49:00 2018 +0200

    dmenu_path: always use the cachedir

diff --git a/dmenu_path b/dmenu_path
index 338bac4..3a7cda7 100644
--- a/dmenu_path
+++ b/dmenu_path
_AT_@ -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"
Received on Sat Jul 21 2018 - 12:50:25 CEST

This archive was generated by hypermail 2.3.0 : Sat Jul 21 2018 - 13:00:24 CEST