dmenu/dmenu_path
Hiltjo Posthuma a30dbb750c make dmenu_path script executable
(as dmenu_run is)
2020-11-26 00:34:52 -08:00

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