Easy way to change the "Flash" icons on in the front end?

Hi,
Is there a easy way to change the icon used default for swithches?
I am aware of how to change the group icons shown in the front end tabs with MDI libraries, but have not figured out how to change the default “Flash” icon for switches (or scripts) for each entity in the groups.

Thanks in advance!

//Per-Henrik

You can specify the desired icon in customize.yaml.

switch.pump:
  icon: mdi:power
switch.fountain:
  icon: mdi:power
script.report_events:
  icon: mdi:voice

If you want to change an entity’s icon globally, then it’s more efficient to use customize_glob. @finity provided a good example here.

1 Like

Thanks, perfect!