第二排第二个图标就是
type: custom:mushroom-template-badge
content: >-
{% set on_lights = states.light | selectattr('state', 'eq', 'on') | list %} {%
if on_lights | length > 0 %}
{{on_lights | length}}
{% else %}
{{ '0' }}
{% endif %}
icon: mdi:lightbulb
color: |-
{% set on_lights = states.light | selectattr('state', 'eq', 'on') | list %}
{% if on_lights | length > 0 %}
amber
{% else %}
gray
{% endif %}
tap_action:
action: perform-action
perform_action: script.unknown
target: {}
|