neodotfiles/user/.config/suckless/dmenu/dmenu_path
Clay Gomera 75927f319c Updated
2022-07-01 02:06:16 -04:00

13 lines
240 B
Bash

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