ansible-swaylock/templates/51-swaylock_keybindings.config.j2
2022-11-30 09:40:47 +01:00

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 %}