42 lines
855 B
Cheetah
42 lines
855 B
Cheetah
#!{{ lookPath "bash" }}
|
|
|
|
# include lib
|
|
. ${CHEZMOI_WORKING_TREE}/scripts/utils.sh
|
|
|
|
# args
|
|
args="--base --zsh"
|
|
|
|
{{- if (ne .hasNVim false) }}
|
|
args="${args} --nvim"
|
|
{{- end }}
|
|
|
|
{{- if (ne .hasLVim false) }}
|
|
args="${args} --lvim"
|
|
{{- end }}
|
|
|
|
{{- if (ne .hasLatex false) }}
|
|
args="${args} --latex"
|
|
{{- end }}
|
|
|
|
{{ if (eq .chezmoi.os "linux") -}}
|
|
{{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}}
|
|
|
|
log "Begin Arch/Manjaro Linux packages installation"
|
|
|
|
. {{ .chezmoi.workingTree }}/scripts/manjaro.sh ${args}
|
|
|
|
log "Finish Arch/Manjaro Linux packages installation"
|
|
|
|
{{ else if (eq .chezmoi.osRelease.id "debian" "ubuntu") -}}
|
|
|
|
log "Begin Debian/Ubuntu Linux packages installation"
|
|
|
|
err "Don't have any install script for Debian/Ubuntu"
|
|
|
|
log "Finish Debian/Ubuntu Linux packages installation"
|
|
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
|