FIX bugs with earlier version and false conky alias

This commit is contained in:
Nate Dwarshuis 2022-07-27 23:42:05 -04:00
parent 7806b512a0
commit e3a10addf1
1 changed files with 9 additions and 9 deletions

View File

@ -22,21 +22,21 @@ data:
xsane: {{ and $desktop (promptBool "xsane" false) }} xsane: {{ and $desktop (promptBool "xsane" false) }}
vpn: {{ and $desktop (promptBool "vpn" false) }} vpn: {{ and $desktop (promptBool "vpn" false) }}
seafile: {{ and $desktop (promptBool "seafile" false) }} seafile: {{ and $desktop (promptBool "seafile" false) }}
conky_alias: {{ and $desktop (promptString "conky" "none") }} conky_alias: {{ if $desktop -}}{{ (promptString "conky" "none") }}{{ else }}none{{ end }}
development: development:
{{- /* emacs implies that most development options are true */}} {{- /* emacs implies that most development options are true */}}
emacs: {{ $emacs }} emacs: {{ $emacs }}
ruby: {{ or $emacs promptBool "ruby" true }} ruby: {{ or $emacs (promptBool "ruby" true) }}
python: {{ or $emacs promptBool "python" true }} python: {{ or $emacs (promptBool "python" true) }}
rust: {{ or $emacs promptBool "rust" true }} rust: {{ or $emacs (promptBool "rust" true) }}
clojure: {{ or $emacs promptBool "clojure" true }} clojure: {{ or $emacs (promptBool "clojure" true) }}
latex: {{ or $emacs promptBool "LaTeX" true }} latex: {{ or $emacs (promptBool "LaTeX" true) }}
r: {{ or $emacs promptBool "R" true }} r: {{ or $emacs (promptBool "R" true) }}
conda: {{ or $emacs promptBool "conda" true }} conda: {{ or $emacs (promptBool "conda" true) }}
{{- /* these aren't implied by emacs */}} {{- /* these aren't implied by emacs */}}
matlab: {{ or $emacs promptBool "MATLAB" true }} matlab: {{ or $emacs (promptBool "MATLAB" true) }}
github: {{ promptBool "GitHub" true }} github: {{ promptBool "GitHub" true }}
paths: paths:
config: {{ $xdg_config_home }} config: {{ $xdg_config_home }}