How to hide the "Sun" entity on the home page?

05

How could I hide it from the home page ?
I use the sunset time for some automations so I can’t just comment it out from configuration.yaml
I think that “hide_entity: true” is only for automations.

remove it from your view

Hide entity will work in customize section for sun

specifically:

homeassistant:
  # Bunch of configuration may be here.
  customize:
    # the customize section handles visibility, icons, names, etc...
    sun.sun:
      hidden: true
1 Like

Thanks I didn’t know about hidden: true, that’s exactly what I needed :ok_hand:

1 Like