List all disabled automations

Is there anyway to easily list the automations that are disabled. I know I can look in the configuration>>automations and scroll down the list but I have 150 so that isn’t overly convenient. I have a maintenance view so I would like to have a list of the disabled automations shown on there so I can quickly detect if something has been disabled that I don’t know about (or forgot more likely!)

Copy-paste this into the Template Editor:

{{ states.automation | selectattr('state', 'eq', 'off') 
   | map(attribute='name') | list | join ('\n') }}
2 Likes

Great so I should be able to use a template to get this onto a card somehow?

You can use it in the Markdown Card.

2 Likes

Thanks perfect!