diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-02-27 18:35:24 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2022-02-27 18:35:24 +0530 |
commit | e92dad4d873d8d883e50f70626d1fb13760f0431 (patch) | |
tree | 39b5e05058d2b34c6cb4d7a02d02465a62094a0c /bkp/dmenu_path | |
download | dmenu-e92dad4d873d8d883e50f70626d1fb13760f0431.tar.gz dmenu-e92dad4d873d8d883e50f70626d1fb13760f0431.tar.bz2 dmenu-e92dad4d873d8d883e50f70626d1fb13760f0431.zip |
dmenu update
Diffstat (limited to 'bkp/dmenu_path')
-rw-r--r-- | bkp/dmenu_path | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bkp/dmenu_path b/bkp/dmenu_path new file mode 100644 index 0000000..3a7cda7 --- /dev/null +++ b/bkp/dmenu_path @@ -0,0 +1,13 @@ +#!/bin/sh + +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" +else + cat "$cache" +fi |