13 lines
269 B
Django/Jinja
13 lines
269 B
Django/Jinja
{% for section in swaylock_keybindings %}
|
|
{% if section.mode != "normal" %}
|
|
mode {{ section.mode }} {
|
|
{% endif %}
|
|
|
|
{% for bind in section.bindings %}
|
|
bindsym {{ bind.bindsym }} {{ bind.action}}
|
|
{% endfor %}
|
|
|
|
{% if section.mode != "normal" %}
|
|
}
|
|
{% endif %}
|
|
{% endfor %}
|