Change switch to globe icon

I have combined my switches & lights into one card in Lovelace (ui-lovelace.yaml) and it currently looks like this:

2019-12-30

Using the following code:

      - entities:
          - entity: switch.10745430dc4f22b35f3e_3
          - entity: switch.10745430dc4f22b35f3e_2
          - entity: switch.dining_room
          - entity: switch.10745430dc4f22b35f3e_4
          - entity: switch.10745430dc4f22b35f3e_1
        show_header_toggle: false
        title: Switches & Lights
        type: entities

I would like to leave them as a group / same card, but, for top three entries, not be lightning bolts but be bulbs.

Any ideas?

Does this work?

      - entities:
          - entity: switch.10745430dc4f22b35f3e_3
            icon: mdi:lightbulb
          - entity: switch.10745430dc4f22b35f3e_2
            icon: mdi:lightbulb
          - entity: switch.dining_room
            icon: mdi:lightbulb
          - entity: switch.10745430dc4f22b35f3e_4
          - entity: switch.10745430dc4f22b35f3e_1
        show_header_toggle: false
        title: Switches & Lights
        type: entities
1 Like

Sure does, thank you :slight_smile: So simple, forgive me I am learning :blush:

1 Like