As title…
instead of
exclude:
domains:
- weblink
- updater
entities:
- sensor.laundry_motion_sensor_sensitivity
- sensor.dining_table_motion_sensor_sensitivity
- sensor.auditorium_motion_sensor_sensitivity
- sensor.frontdoor_motion_sensor_sensitivity
- sensor.dorm_motion_sensor_sensitivity
- sensor.corridor_motion_sensor_sensitivity
- sensor.corridor_terrace_motion_sensor_sensitivity
- sensor.master_bedroom_motion_sensor_sensitivity
- sensor.corridor_office_motion_sensor_sensitivity
- sensor.control_room_motion_sensor_sensitivity
- sensor.attic_motion_sensor_sensitivity
- sensor.laundry_motion_sensor_threshold
- sensor.dining_table_motion_sensor_threshold
- sensor.auditorium_motion_sensor_threshold
- sensor.frontdoor_motion_sensor_threshold
- sensor.dorm_motion_sensor_threshold
- sensor.corridor_motion_sensor_threshold
- sensor.corridor_terrace_motion_sensor_threshold
- sensor.master_bedroom_motion_sensor_threshold
- sensor.corridor_office_motion_sensor_threshold
- sensor.control_room_motion_sensor_threshold
- sensor.attic_motion_sensor_threshold
would love to write:
exclude:
domains:
- weblink
- updater
entities:
- sensor.*_motion_sensor_sensitivity
- sensor.*_motion_sensor_threshold
as we can in customize_glob:
input_boolean.*:
templates:
icon_color: >
if (state === 'on') return 'rgb(251, 210, 41)';
return 'rgb(54, 95, 140)';
would this be an option (not documented perhaps…)?