1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-09-28 17:17:50 +00:00
Dotfiles/suckless/dmenu-4.9/dmenu_path

14 lines
240 B
Plaintext
Raw Normal View History

#!/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