dmenu-exkc/dmenu_path

14 lines
267 B
Bash
Executable File

#!/bin/sh
cachedir="${XDG_CACHE_HOME:-"$HOME/.local/share/dmenu_path"}"
cache="$cachedir/dmenu_path"
[ ! -e "$cachedir" ] && mkdir -p "$cachedir"
IFS=:
if stest -dqr -n "$cache" $PATH; then
stest -flx $PATH |sort -bfM |uniq -i| tee "$cache"
else
cat "$cache"
fi