mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-10-31 22:17:31 +00:00
14 lines
240 B
Bash
Executable file
14 lines
240 B
Bash
Executable file
#!/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
|