🔧 Patched custom dmenu

This commit is contained in:
tomit4 2026-03-03 11:48:12 -08:00
parent 3c5ce72efa
commit 17d6edb1fb
24 changed files with 2099 additions and 0 deletions

13
dmenu/dmenu_path Executable file
View file

@ -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