mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
14 lines
240 B
Text
14 lines
240 B
Text
|
|
#!/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
|