1
0
chezmoi/home/.chezmoi.toml.tmpl
2024-03-04 13:35:41 +01:00

20 lines
556 B
Cheetah

{{- $email := promptStringOnce . "email" "Email address " }}
{{- $mbsyncAccountNumber := promptIntOnce . "mbsyncAccountNumber" "How many mbsync accounts would you generate " }}
{{- $mbsyncAccountNumber = $mbsyncAccountNumber | int -}}
[data]
email = {{ $email | quote }}
{{- if gt $mbsyncAccountNumber 0 -}}
{{- range $i, $e := until $mbsyncAccountNumber -}}
[[data.mbsync]]
name = {{ $mbsyncAccountName := promptString "MbSync account name " }}
email = "accountEmail"
username = "accountUserName"
server = "accountServer"
{{- end -}}
{{- end -}}