initial commit

This commit is contained in:
root
2026-06-28 14:27:20 -04:00
commit ae0f1f559e
115 changed files with 30411 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{% set ns = namespace(lines=[]) %}
{% for domain, entities in states | groupby('domain') %}
{% set ns.lines = ns.lines + ['[' ~ domain ~ ']'] %}
{% for s in entities | sort(attribute='entity_id') %}
{% set area = area_name(s.entity_id) if area_name(s.entity_id) else 'No area' %}
{% set friendly = state_attr(s.entity_id, 'friendly_name') if state_attr(s.entity_id, 'friendly_name') else s.object_id %}
{% set ns.lines = ns.lines + [
s.entity_id ~ ' | ' ~ friendly ~ ' | ' ~ area
] %}
{% endfor %}
{% set ns.lines = ns.lines + [''] %}
{% endfor %}
{{ ns.lines | join('\n') }}