ansible-sway/templates/30-theme.config.j2

11 lines
337 B
Django/Jinja

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