This repository has been archived on 2021-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
dmenu/dmenu_path

14 lines
240 B
Plaintext
Raw Normal View History

#!/bin/sh
2018-07-21 12:47:43 +02:00
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