ansible-sway/templates/input.config.j2
2022-11-17 22:49:38 +01:00

9 lines
215 B
Django/Jinja

{% if sway_inputs is defined %}
{% for input in sway_inputs %}
input {{ input.name }} {
{% for option in input.options %}
{{ option.option }} {{ option.value }}
{% endfor %}
}
{% endfor %}
{% endif %}