Are Persistent Notification supported ? #91
Replies: 2 comments 2 replies
-
|
Hi @db-wally007! 👋 AlertTicker Card can already display HA persistent notifications — no duplication needed. When a persistent notification is created (via automation, notify.persistent_notification, or a service call), Home Assistant exposes it as a real entity: persistent_notification. with state notifying and attributes title and message. You can monitor all of them with a single entity_filter alert: type: custom:alert-ticker-card
The filter "persistent_notification." matches all persistent notifications. If you want to be selective, you can use entity_filter_exclude to skip specific ones by entity ID. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @db-wally007! 👋 You're absolutely right, and I owe you a correction — my original answer was wrong. Since Home Assistant 2023.6, persistent notifications were removed from the state machine entirely. persistent_notification.* entities no longer exist anywhere — not in Settings → Entities, not in Developer Tools → States, not in templates. This was a deliberate change (tracked in core #15071) and there's been no reversal since. So AlertTicker's entity_filter: "persistent_notification." does not work on modern HA — apologies for the incorrect guidance. Working workaround for modern HA Since AlertTicker monitors state entities, the cleanest approach is to create a small helper per notification category and set/clear it alongside your existing persistent_notification.create action — no logic duplication, just an extra line per automation:
type: custom:alert-ticker-card
|
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
as title says, are HASS native persistent notifications supported ?
https://www.home-assistant.io/integrations/persistent_notification/
I read in one of the closed Github issues that HASS alerts are supported but this requires setting up each alert in the card as far as I understood it). My question is if native HASS notifications are supported.
I already have Automations creating native HASS notifications (for battery alerts, for window/door open after 12am and so on ) but at the moment it requires user to have sidebar visible at all times to see them. I'd like to show notifications in a dashboard card (without duplicating each alert in this card).
Is this possible ?
Beta Was this translation helpful? Give feedback.
All reactions