dotfiles/dot_config/packages/run_onchange_after_arch-packages.fish.tmpl

32 lines
702 B
Cheetah
Raw Normal View History

{{ if eq .chezmoi.osRelease.id "arch" -}}
#!/usr/bin/env fish
{{ range (glob ".config/packages/arch?*") -}}
# {{ include (joinPath "dot_config/packages/" (base .)) | sha256sum }}
{{ end -}}
cd "$HOME/.config/packages/"
set file (\
find . -type f -iname "arch?*" -print0\
| xargs -0 ls -tr\
| tail -n 1\
| string sub -s 3\
)
cp $file arch
{{ range .packages.arch.exclude -}}
sed -i '/{{ . }}/d' arch
{{ end -}}
if ! test "{{ .chezmoi.hostname }}" = "$file"
set_color yellow && echo "Package list has changed, reinstalling..."
yay -S --needed - <~/.config/packages/arch
end
yay -Qeq >{{ joinPath .chezmoi.sourceDir "dot_config/packages" .chezmoi.hostname }}
cd "$HOME"
{{ end -}}