dmenu/dmenu_path

18 lines
380 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2022-08-28 03:11:10 -07:00
config_file="$HOME/.config/dmenu/aliases"
2023-09-02 23:08:54 -07:00
[ -e "$config_file" ] && source "$config_file"
2022-08-28 03:11:10 -07: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"
compgen -ac | sort -u | tee "$cache"
else
cat "$cache"
fi