diff --git a/atom.xml b/atom.xml index 1bfc158db8..c6820ebc4f 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
Some components automatically create special groups containing component entities. These groups are named like group.all_...
, for example:
group.all_switches
group.all_lights
group.all_devices
group.all_scripts
group.all_automations
You can see list of these groups in State page of the Developer Tools.
Default groups appear in the HOME tab, if not overridden by user views and groups. Default groups are hidden by default, so you must customize them to be visible in your custom groups and views.
+# Example configuration.yaml to include default groups in custom view
+
+customize:
+ group.all_automations:
+ hidden: false
+ group.all_scripts:
+ hidden: false
+
+group:
+ automation_view:
+ name: Automation
+ view: yes
+ entities:
+ - group.all_automations
+ - group.all_scripts
+
+