First commit

This commit is contained in:
Yorick Barbanneau 2022-11-30 09:40:47 +01:00
commit ed405fe273
4 changed files with 104 additions and 0 deletions

View file

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