aboutsummaryrefslogtreecommitdiff
path: root/dmenuo/dmenu_path
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-11-06 08:40:23 -0500
committerBradley Taunt <bt@btxx.org>2024-11-06 08:40:23 -0500
commit08e3aadd9b6d64dfabbd37581ef0d4d6d649444f (patch)
tree3449586cfe8226e8441b1e00ece92b30daf2e609 /dmenuo/dmenu_path
parent2696eff953132fc335d2d5f19e82009ac0870419 (diff)
Initial overall to match latest updates
Diffstat (limited to 'dmenuo/dmenu_path')
-rwxr-xr-xdmenuo/dmenu_path13
1 files changed, 13 insertions, 0 deletions
diff --git a/dmenuo/dmenu_path b/dmenuo/dmenu_path
new file mode 100755
index 0000000..3a7cda7
--- /dev/null
+++ b/dmenuo/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