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,25 @@
set $mod Mod4
set $left h
set $down j
set $up k
set $right l
# Dynamic workspace keybindings
{% for k,v in sway_workspaces.items() %}
bindsym $mod+{{ k }} workspace $ws{{ k }}
bindsym $mod+Shift+{{ k }} move container to workspace $ws{{ k }}
{% endfor %}
{% for section in sway_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 %}