Lovelace - combine entities with glance?

have this entities card Id like to split-up in 1 entity and 2 glance items:

  - type: entities
    title: Home motion
    entities:
      - variable.last_motion
      - binary_sensor.motion_in_hq
      - binary_sensor.motion_sensors_active

shows like:
52

I would love to have the bottom 2 sensors as glance items so tried:

  - type: entities
    title: Home motion
    entities:
      - variable.last_motion
      - type: glance
        entities:
          - binary_sensor.motion_in_hq
          - binary_sensor.motion_sensors_active

but this is not an allowed configuration, so ended up with:

 - type: vertical-stack
    title: Home motion
    cards:
      - type: entities
        entities:
          - variable.last_motion
      - type: glance
        entities:
          - binary_sensor.motion_in_hq
          - binary_sensor.motion_sensors_active

which gives me these 2 seemingly unrelated cards:

36

Is there a way to configure what I m looking for?
thanks for having a look.

There’s a custom card I use called “vertical-stack-in-card”. Here’s the link to it:

this is what it looks like on my frontend with a text input and a glanc card.

4 Likes

quite!
thanks, for this, exactly what I was looking for, didn’t even have to change my config…only the name of the custom-card
50
02

1 Like

Yeah, it’s one of my favorite cards. I like organization in my UI.

indeed, and Glance card seems fine, but only for entities with no more than 5 letter names…

Well if you cram 7 or 8 items into the glance card it doesn’t work well. I’ve noticed that 5 works well with 7 letters.

Great, exactly what I was looking for. Thank you!