Order items

Hello,

Just wanted to know how can I set a priority order, for the items or groups to display on my screen. I mean, the first one to be the swithches, the second one the blinds, etc, etc.

Let me know,

Thanks

You can do that under homeassistant: customize:
here a example:

group.living_room:
  order: 1
group.master_bedroom:
  order: 2
group.baby_bedroom:
  order: 3
group.kitchen:
  order: 4
group.wc:
  order: 5
group.guest_bedroom:
  order: 6
group.laundry_room:
  order: 7
group.entrance:
  order: 8
group.house_climate:
  order: 9
group.doors_group:
  order: 10

If you create a group, the order in which you add items to that group is the order in which they will be displayed.

If you have multiple groups in a view, you can order them in the customize.yaml as @Sthope mentioned above

Oh, perfect, thank you very much :smiley:

I found that only works if you create a group with the items in the order you want and then create another group with that group in and set that to view, otherwise they just come up in alphabetical order.