diff --git a/atom.xml b/atom.xml index 05b4d4a060..08b9b37066 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
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
@@ -175,6 +171,23 @@ Notice in the example below that in order to refer to the group “Living Room
When any member of a group is on
then the group will also be on
. Similarly with a device tracker, when any member of the group is home
then the group is home
.
You can also order your groups using customize with order:
if they don’t show up in the order you want them in.
# Example configuration.yaml to order groups with order:
+customize:
+ group.all_automations:
+ order: 1
+ group.all_scripts:
+ order: 2
+group:
+ automation_view:
+ name: Automation
+ view: yes
+ entities:
+ - group.all_automations
+ - group.all_scripts
+
+