1
0
chezmoi/home/.chezmoi.toml.tmpl
2024-03-04 15:14:58 +01:00

15 lines
546 B
Cheetah

[data]
email = {{ promptString "Git main email address " "" | quote }}
{{- with promptInt "How many mbsync accounts would you generate " 0 -}}{{- $count := . | int -}}
{{- if gt $count 0 -}}
mbsync = {{ ternary true false $count }}
{{- range $i, $e := until $count }}
[[data.mbsync]]
name = {{ promptString "MbSync account name " | quote }}
mail = {{ promptString "MbSync account mail " | quote }}
user = {{ promptString "MbSync account user " | quote }}
host = {{ promptString "MbSync account host " | quote }}
{{- end }}
{{- end }}
{{- end }}