Delete useless file

This commit is contained in:
Yorick Barbanneau 2022-11-18 23:41:00 +01:00
parent c1a6ca5421
commit 00daf14e01
5 changed files with 0 additions and 63 deletions

View file

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

View file

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

View file

@ -1,9 +0,0 @@
{% if sway_outputs %}
{% for output in sway_outputs %}
output {{ output.name ~ " " }}
{%- for option in output.options %}
{{ option.option }} {{ option.value }}
{% endfor %}
{% endfor %}
{% endif %}

View file

@ -1,11 +0,0 @@
{% for k,v in sway_theme_parameters.items() %}
{{ k }} {{ v }}
{% endfor %}
{% for client, c in sway_theme_colors.items() %}
client.{{ client }} {{ c.border }} {{ c.backgound}} {{ c.text }}
{%- if c.indicator is defined %} {{ c.indicator }}
{%- if c.child_border is defined %} {{ c.child_border }}{% endif %}
{% endif %}
{% endfor %}

View file

@ -1,9 +0,0 @@
{% for k,v in sway_workspaces.items() %}
set $ws{{ k }} {{ v }}
{% endfor %}
{% if sway_rules is defined %}
{% for i in rules %}
{{ i.verb }} {{ i.query }} {% if i.verb == 'assign' %}$ws{% endif %}{{ i.action }}
{% endfor %}
{% endif %}