aboutsummaryrefslogtreecommitdiff
path: root/dmenu_path
diff options
context:
space:
mode:
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 @@
1#!/bin/sh 1#!/bin/sh
2cachedir=${XDG_CACHE_HOME:-"$HOME/.cache"} 2
3if [ -d "$cachedir" ]; then 3cachedir="${XDG_CACHE_HOME:-"$HOME/.cache"}"
4 cache=$cachedir/dmenu_run 4cache="$cachedir/dmenu_run"
5else 5
6 cache=$HOME/.dmenu_cache # if no xdg dir, fall back to dotfile in ~ 6[ ! -e "$cachedir" ] && mkdir -p "$cachedir"
7fi 7
8IFS=: 8IFS=:
9if stest -dqr -n "$cache" $PATH; then 9if stest -dqr -n "$cache" $PATH; then
10 stest -flx $PATH | sort -u | tee "$cache" 10 stest -flx $PATH | sort -u | tee "$cache"