ENH generalize vpn flag
This commit is contained in:
parent
a337f34b08
commit
5485487d69
|
@ -20,7 +20,7 @@ data:
|
||||||
optimus: {{ and $laptop (promptBool "optimus" false) }}
|
optimus: {{ and $laptop (promptBool "optimus" false) }}
|
||||||
virtualbox: {{ and $desktop (promptBool "virtualbox" false) }}
|
virtualbox: {{ and $desktop (promptBool "virtualbox" false) }}
|
||||||
xsane: {{ and $desktop (promptBool "xsane" false) }}
|
xsane: {{ and $desktop (promptBool "xsane" false) }}
|
||||||
f5vpn: {{ and $desktop (promptBool "f5vpn" 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: {{ and $desktop (promptString "conky" "none") }}
|
||||||
development:
|
development:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
loglevel: Debug
|
loglevel: Warn
|
||||||
features:
|
features:
|
||||||
optimus: {{ .features.optimus }}
|
optimus: {{ .features.optimus }}
|
||||||
vpn: true
|
vpn: {{ .features.vpn }}
|
||||||
bluetooth: true
|
bluetooth: true
|
||||||
intel_backlight: {{ .laptop }}
|
intel_backlight: {{ .laptop }}
|
||||||
clevo_backlight: {{ .features.clevo }}
|
clevo_backlight: {{ .features.clevo }}
|
||||||
|
@ -9,4 +9,4 @@ features:
|
||||||
virtualbox: {{ .features.virtualbox }}
|
virtualbox: {{ .features.virtualbox }}
|
||||||
xsane: {{ .features.xsane }}
|
xsane: {{ .features.xsane }}
|
||||||
battery: {{ .laptop }}
|
battery: {{ .laptop }}
|
||||||
f5vpn: {{ .features.f5vpn }}
|
f5vpn: {{ .features.vpn }}
|
||||||
|
|
Loading…
Reference in New Issue