First commit

This commit is contained in:
Yorick Barbanneau 2022-11-17 22:49:38 +01:00
commit c2387aff03
14 changed files with 433 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{% 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 %}