tmux, bash, mgmt fiddling
This commit is contained in:
parent
6649cfc78d
commit
c653422734
11 changed files with 160 additions and 11 deletions
|
|
@ -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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue