Initial commit

This commit is contained in:
2022-08-28 03:11:10 -07:00
commit 957aec2e6e
20 changed files with 2568 additions and 0 deletions

17
dmenu_path Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
config_file="$HOME/.config/dmenu/aliases"
[[ -e "$config_file" ]] && source "$config_file"
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