change script filename

This commit is contained in:
2025-04-23 21:13:45 +08:00
parent 3bcad3a8e8
commit 8a7ea22feb
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{{ if eq .chezmoi.os "linux" -}}
{{ if eq .chezmoi.osRelease.id "manjaro" -}}
#!/usr/bin/env bash
{{ range .packages.linux.manjaro.pacman -}}
sudo pacman -S --needed --noconfirm {{ . | quote }}
{{ end -}}
{{ range .packages.linux.manjaro.aur -}}
yay -S --needed --noconfirm {{ . | quote }}
{{ end -}}
{{ end -}}
{{ end -}}