Move all suckless stuff to unused.

This commit is contained in:
Bartek Stalewski 2023-02-26 13:47:42 +01:00
parent cb44e12e67
commit 0e403387f2
68 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/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