tmux, bash, mgmt fiddling

This commit is contained in:
Robert Perce 2026-03-25 10:50:18 -05:00
parent 6649cfc78d
commit c653422734
11 changed files with 160 additions and 11 deletions

View file

@ -0,0 +1,17 @@
# shellcheck shell=bash
export DEPENDS=( mod/packages.bash )
_i_fzf() {
latest=$(github_latest junegunn/fzf)
diag "latest fzf $latest"
if ! is_latest fzf "$latest" $(current fzf); then
bin_from fzf "https://github.com/junegunn/fzf/releases/download/${latest}/fzf-${latest#v}-linux_amd64.tar.gz"
fi
}
apply() {
for fn in $(declare -F | awk '$3 ~ /^_i_/ { print $3 }'); do
$fn
done
diag "all manual packages up to date"
}