Lovelace - all automations in one view

Hi,

I‘m switching to lovelace (yaml mode). In the old UI all automation (even new ones) were automatically added to the automations view.

Is there a way to do the same in lovelace. Adding the the group.all_automations to a card will only show the group as one entity.
I’d like to avoid copying every new automation in the automation view/card.

would this work?

1 Like

As @cjsimmons wrote - the monster card is great for that.

I use it like this:

  - title: Automations
    icon: mdi:home-automation
    id: automations
    cards:
      - type: custom:monster-card
        show_empty: false
        card:
          type: entities
          title: 'On'
        filter:
          include:
            - entity_id: "automation.*"
              state: "on"
      - type: custom:monster-card
        show_empty: false
        card:
          type: entities
          title: 'Off'
        filter:
          include:
            - entity_id: "automation.*"
              state: "off"
3 Likes

Thank you both @cjsimmons and @chairstacker.
Works perfectly.

I found this page to see some examples:
https://home-assistant-lovelace-gallery.netlify.com/#

Is there one page that shows all of the lovelace tricks?
Or is there one big lovelace questions thread?

For example I wanted to make an empty card disappear. I couldn’t find the answer, but now I saw how to do it in your example.
Would be great to have a page with a list of these commands.

Now I’d like to change the width of some cards (even in vertical and horizontal stacks). I tried column_width but that didn’t work. Maybe it wasn’t at the right spot, but try’n’error isn’t fun.