1
0
chezmoi/home/.chezmoi.toml.tmpl

16 lines
540 B
Cheetah
Raw Normal View History

2024-03-04 12:30:21 +00:00
[data]
2024-03-04 13:21:42 +00:00
email = {{ promptString "Git main email address " "" | quote }}
2024-03-04 15:22:30 +00:00
{{- with promptInt "How many mbsync accounts would you generate " -}}{{- $count := . | int }}
2024-03-04 15:20:30 +00:00
{{- if gt $count 0 -}}
{{- range $i, $e := until $count }}
2024-03-04 15:23:32 +00:00
[[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 }}
2024-03-04 15:20:30 +00:00
{{- end }}
2024-03-04 15:23:00 +00:00
{{- end }}
{{ else }}
2024-03-04 15:23:32 +00:00
[[data.mbsync]]
2024-03-04 15:03:46 +00:00
{{- end }}