-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-lovelace.yaml
1447 lines (1364 loc) · 45.2 KB
/
ui-lovelace.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: Stenman
views:
################# HOME #################
- icon: mdi:home-assistant
cards:
- type: glance
state_color: false
entities:
- person.david
- person.nellie
- entity: sensor.plex_oden
name: Plex
icon: mdi:plex
double_tap_action:
action: navigate
navigation_path: /lovelace/8
- entity: sensor.outdoor_temperature
double_tap_action:
action: navigate
navigation_path: /lovelace/4
- alarm_control_panel.ajax_alarm_status
- entity: sensor.car_status
double_tap_action:
action: navigate
navigation_path: /lovelace/9
- entity: sensor.sbw57s_battery_level
name: 'Batteri'
- entity: binary_sensor.sbw57s_battery_charging
name: 'Status'
- entity: sensor.sbw57s_range
name: 'Räckvidd'
- entity: switch.sbw57s_heater
name: 'Klimat'
card_mod:
style: |
:host {
{% if states('sensor.outdoor_temperature') | float > 15 %}
--card-mod-icon: mdi:air-conditioner;
{% else %}
--card-mod-icon: mdi:radiator;
{% endif %}
}
- type: entities
title: Belysning
show_header_toggle: false
entities:
- script.indoor_lights_bright
- script.indoor_lights_relaxed
- script.indoor_lights_low_brightness
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: script.advent_lights_turn_on
- script.indoor_lights_off
- type: entities
title: Vardagsrum
show_header_toggle: false
entities:
- script.livingroom_bright
- script.livingroom_relaxed
- light.livingroom_dinner_table
- light.livingroom_couch_table
- light.livingroom_floor
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'off'
row:
entity: light.livingroom_window
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: light.livingroom_window
name: 'Fönsterlampa'
icon: mdi:star-david
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: light.livingroom_menorah
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
- entity: light.livingroom_christmas_tree
state: 'available'
row:
entity: light.livingroom_christmas_tree
- type: entities
title: Hall
show_header_toggle: false
entities:
- entity: script.hallway_bright
double_tap_action:
action: perform-action
perform_action: script.hallway_bottom_floor_bright
- script.hallway_relaxed
- light.hallway_ceiling_bottom_floor
- light.hallway_ceiling_top_floor
- entity: light.hallway_stair_group
double_tap_action:
action: perform-action
perform_action: light.turn_off
target:
entity_id: light.hallway_stair_up
- type: entities
title: Sovrum
show_header_toggle: false
entities:
- script.bedroom_bright
- script.bedroom_relaxed
- script.bedroom_low_brightness
- script.bedroom_nursery_light
- light.bedroom_ceiling
- light.bedroom_bedside
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: light.bedroom_menorah
- type: entities
title: Barnrum
show_header_toggle: false
entities:
- script.childroom_bright
- script.childroom_relaxed
- script.childroom_night_light
- light.childroom_ceiling
- light.childroom_led_strip
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: light.childroom_window
- type: entities
title: Arbetsrum
show_header_toggle: false
entities:
- script.office_bright
- script.office_relaxed
- script.office_low_brightness
- light.office_ceiling
- light.office_desk
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'off'
row:
entity: light.office_window
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: light.office_window
icon: mdi:star-david
- type: entities
title: Kök
show_header_toggle: false
entities:
- script.kitchen_bright
- script.kitchen_relaxed
- light.kitchen_table
- light.kitchen_ceiling
- type: conditional
conditions:
- entity: input_boolean.enable_advent_light_automations
state: 'on'
row:
entity: light.kitchen_window
- entity: switch.kitchen_coffee_maker
- type: conditional
conditions:
- entity: timer.kitchen_coffee_maker
state: 'active'
row:
entity: timer.kitchen_coffee_maker
name: Timer
type: custom:timer-bar-card
- type: entities
title: Badrum
show_header_toggle: false
entities:
- script.bathroom_bright
- script.bathroom_low_brightness
- light.bathroom_ceiling
- light.bathroom_mirror
- type: custom:mini-media-player
entity: media_player.spotify
icon: mdi:spotify
replace_mute: stop
artwork: full-cover
hide:
volume: true
power: true
progress: true
idle_view:
when_idle: true
when_paused: true
when_standby: true
- type: custom:mini-media-player
entity: media_player.livingroom_apple_tv
icon: mdi:television
replace_mute: stop
artwork: full-cover
hide:
volume: true
power: true
runtime: false
idle_view:
when_idle: true
when_standby: true
# - type: custom:list-card
# columns:
# - title: ' '
# field: day
# - field: food
# title: ' '
# entity: sensor.skolmaten_villanskolan
# feed_attribute: entries
# title: Matsedel Junibacken
- type: entities
title: Utomhus
show_header_toggle: false
entities:
- script.turn_on_outdoor_lights
- light.outdoor_main_entrance
- light.outdoor_porch
# - light.outdoor_front_ledstrip
- binary_sensor.outdoor_shed_door
- type: custom:auto-entities
show_empty: false
card:
type: entities
title: Gästnätverk
show_header_toggle: false
filter:
include:
- domain: device_tracker
state: home
attributes:
essid: "Stenman_guest"
################# SONOS #################
- icon: mdi:speaker-wireless
cards:
- type: custom:mini-media-player
entity: media_player.kitchen_sonos
artwork: full-cover
icon: mdi:speaker-multiple
hide:
power: true
source: true
shuffle: false
volume_level: false
runtime: false
speaker_group:
platform: sonos
sync_volume: true
expanded: true
show_group_count: true
entities:
- entity_id: media_player.kitchen_sonos
name: Kök
- entity_id: media_player.livingroom_sonos
name: Vardagsrum
- entity_id: media_player.childroom_sonos
name: Barnrum
- type: custom:mini-media-player
entity: media_player.livingroom_sonos
artwork: cover
icon: mdi:speaker
volume_stateless: true
volume_step: 3
hide:
power: true
source: true
shuffle: false
volume_level: false
runtime: false
speaker_group:
platform: sonos
show_group_count: false
shortcuts:
label: Välj musik
list:
- name: Peaceful Guitar
type: music
id: spotify:playlist:37i9dQZF1DX0jgyAiPl8Af
- name: Instrumentala vaggvisor
type: music
id: spotify:playlist:0AN9INqQysBuGphdxgkfkw
- name: 'Disney Peaceful Piano: Lullaby'
type: music
id: spotify:album:2CE8v99s07pcaXQwOLYMlS
- name: Piano worship
type: music
id: spotify:playlist:3zJnlFpxQ9s7VS5LSvbeSd
- name: Piano dinner
type: music
id: spotify:playlist:37i9dQZF1DWZVU32KsYGUK
- name: Baby sleep
type: music
id: spotify:playlist:37i9dQZF1DX0DxcHtn4Hwo
- name: Be Held
type: music
id: spotify:album:36mfScdTe8zFlaHQAmIMuf
- name: Lullaby Baby
type: music
id: spotify:album:49k5jl8u2iuxMU4iyczJ9M
- name: Skyrim sleep
type: music
id: spotify:playlist:0cz5GpTRGnMYrqtEj3639f
- type: custom:mini-media-player
entity: media_player.childroom_sonos
artwork: cover
icon: mdi:speaker
volume_stateless: true
volume_step: 2
hide:
power: true
source: true
shuffle: false
volume_level: false
runtime: false
speaker_group:
platform: sonos
show_group_count: false
shortcuts:
label: Välj musik
list:
- name: Rainy Day Piano
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: music
media_content_id: 'plex://{"library_name": "Musik", "album_name": "Rainy Day Piano"}'
- name: White Noise Lullabies
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: music
media_content_id: 'plex://{"library_name": "Musik", "album_name": "Soothing Lullabies with White Noise"}'
- name: Relaxing film music
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: music
media_content_id: 'plex://{"library_name": "Musik", "album_name": "Relaxing film music"}'
- name: Worship Lullabies
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: music
media_content_id: 'plex://{"library_name": "Musik", "album_name": "Worship Lullabies"}'
- name: Gentle Game Lullabies
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: music
media_content_id: 'plex://{"library_name": "Musik", "album_name": "Gentle Game Lullabies"}'
- name: Instrumental Lullabies
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: music
media_content_id: 'plex://{"library_name": "Musik", "album_name": "Instrumental Lullabies"}'
- name: Disney Guitar
icon: mdi:plex
type: service
id: media_player.play_media
data:
entity_id: media_player.childroom_sonos
media_content_type: playlist
media_content_id: 'plex://{"library_name": "Musik", "playlist_name": "Disney Guitar"}'
- name: Bamses godnattstund
icon: mdi:spotify
type: music
id: spotify:album:5pwEdIxhI6cixxJecNvITG
- type: conditional
conditions:
- entity: media_player.childroom_sonos
state: 'playing'
- entity: binary_sensor.childroom_sonos_is_grouped
state: 'off'
card:
type: vertical-stack
title: Timer sovrum
cards:
- type: horizontal-stack
cards:
- type: button
name: 'Start'
icon: mdi:play
tap_action:
action: perform-action
perform_action: script.bedroom_music_timer_start
- type: button
name: 'Stopp'
icon: mdi:stop
tap_action:
action: perform-action
perform_action: script.bedroom_music_timer_cancel
- type: entity
entity: sensor.bedroom_music_timer_minutes
- type: entities
entities:
- entity: timer.childroom_music
name: Status
icon: mdi:timelapse
state_color: true
type: custom:timer-bar-card
- input_number.bedroom_music_timer_minutes
- type: entities
title: Inställningar
show_header_toggle: false
entities:
- type: section
label: Vardagsrum
- entity: switch.sonos_livingroom_night_sound
state_color: true
- entity: switch.sonos_livingroom_speech_enhancement
state_color: true
- number.sonos_livingroom_bass
- type: section
label: Kök
- number.sonos_kitchen_bass
- type: section
label: Barnrum
- number.sonos_childroom_bass
################# CAMERA #################
- icon: mdi:cctv
cards:
- type: conditional
conditions:
- entity: switch.docker_frigate
state: 'off'
card:
type: entities
title: Aktivera Frigate
entities:
- switch.docker_frigate
- type: custom:frigate-card
live:
auto_unmute:
- selected
display:
mode: grid
grid_columns: 1
menu:
buttons:
expand:
enabled: true
cameras:
- camera_entity: camera.asgari_1
live_provider: go2rtc
- camera_entity: camera.deltaco_1
live_provider: go2rtc
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: markdown
content: >
### Uteplats
- type: tile
entity: camera.asgari_1
show_entity_picture: true
double_tap_action:
action: navigate
navigation_path: /config/devices/device/d455541e2b2ff477bd1a31ad1fcda320
- type: tile
entity: image.asgari_1_person
show_entity_picture: true
- type: tile
entity: automation.person_detected_notify_davids_iphone
name: Davids iPhone
icon: mdi:cellphone-sound
- type: tile
entity: automation.person_detected_notify_nellies_iphone
name: Nellies iPhone
icon: mdi:cellphone-sound
- type: tile
entity: automation.person_detected_notify_sonos
name: Högtalare
icon: mdi:speaker-wireless
- type: vertical-stack
cards:
- type: markdown
content: >
### Barnrum
- type: tile
entity: camera.deltaco_1
show_entity_picture: true
double_tap_action:
action: navigate
navigation_path: /config/devices/device/d855d561ee58d21e04921a812ba31a3a
- type: tile
entity: binary_sensor.deltaco_1_crying_sound
name: Detekterat gråt
icon: mdi:emoticon-cry-outline
state_content:
- state
- last-changed
- type: tile
entity: automation.sound_detected_notify_davids_iphone
name: Davids iPhone
icon: mdi:cellphone-sound
- type: tile
entity: automation.sound_detected_notify_nellies_iphone
name: Nellies iPhone
icon: mdi:cellphone-sound
################# ROBOT VACUUM #################
- icon: mdi:robot-vacuum-variant
cards:
- type: custom:vacuum-card
entity: vacuum.neato_d7
map: camera.neato_d7_cleaning_map
stats:
default:
- attribute: clean_start
subtitle: Starttid
- attribute: clean_stop
subtitle: Sluttid
- attribute: clean_area
unit: 'm2'
subtitle: Cleaning area
cleaning:
- attribute: clean_start
subtitle: Starttid
- attribute: clean_area
unit: 'm2'
subtitle: Cleaning area
- type: vertical-stack
cards:
- type: button
entity: script.vacuum_clean_home_neato_d7
name: Nuvarande våningsplan
icon: mdi:floor-plan
icon_height: '50px'
tap_action:
action: perform-action
perform_action: script.vacuum_clean_home_neato_d7
- type: horizontal-stack
title: Ovanvåning
cards:
- type: button
entity: script.vacuum_clean_bedroom_neato_d7
name: Sovrum
icon: mdi:bed-double-outline
tap_action:
action: perform-action
perform_action: script.vacuum_clean_bedroom_neato_d7
- type: button
entity: script.vacuum_clean_childroom_neato_d7
name: Barnrum
icon: mdi:baby
tap_action:
action: perform-action
perform_action: script.vacuum_clean_childroom_neato_d7
- type: button
entity: script.vacuum_clean_office_neato_d7
name: Arbetsrum
icon: mdi:desk
tap_action:
action: perform-action
perform_action: script.vacuum_clean_office_neato_d7
- type: button
entity: script.vacuum_clean_hallway_neato_d7
name: Hall
icon: mdi:shoe-print
tap_action:
action: perform-action
perform_action: script.vacuum_clean_hallway_neato_d7
- type: horizontal-stack
title: Bottenvåning
cards:
- type: button
entity: script.vacuum_clean_entrance_neato_d7
name: Entré
icon: mdi:door
tap_action:
action: perform-action
perform_action: script.vacuum_clean_entrance_neato_d7
- type: button
entity: script.vacuum_clean_livingroom_neato_d7
name: Vardagsrum
icon: mdi:sofa
tap_action:
action: perform-action
perform_action: script.vacuum_clean_livingroom_neato_d7
- type: button
entity: script.vacuum_clean_kitchen_neato_d7
name: Kök
icon: mdi:silverware-fork-knife
tap_action:
action: perform-action
perform_action: script.vacuum_clean_kitchen_neato_d7
- type: entities
show_header_toggle: false
entities:
- input_boolean.vacuum_eco_mode
- input_boolean.vacuum_extra_care
################# WEATHER #################
- icon: mdi:weather-partly-cloudy
cards:
- type: custom:hourly-weather
entity: weather.smhi_hem
num_segments: 16
name: Timvis väder
language: sv
- type: custom:mini-graph-card
entities:
- sensor.outdoor_temperature
name: 'Yttertemperatur'
unit: '°C'
line_color: '#5c8dd1'
hour24: true
animate: true
decimals: 1
points_per_hour: 1
font_size_header: 18
show:
extrema: true
labels: true
fill: fade
- type: weather-forecast
entity: weather.smhi_hem
forecast_type: daily
- type: custom:horizon-card
language: sv
################# WIFI #################
- icon: mdi:wifi
visible:
- user: 107eee335bda4b4caf181a9d0310a3b0
cards:
- type: button
entity: group.wifi
################# UNRAID #################
- icon: mdi:server-network
visible:
- user: 53d03bf37feb464487d18a6c12a30efb
cards:
- type: entities
title: Wake On LAN & Wi-Fi
show_header_toggle: false
entities:
- switch.wol_vidar
- switch.wol_rpi_3b
- group.wifi
- type: entities
title: Unraid
show_header_toggle: false
entities:
- entity: sensor.unraid_mnt_disk1_used_percent
name: 'Diskanvändning disk 1'
- entity: sensor.unraid_mnt_disk2_used_percent
name: 'Diskanvändning disk 2'
- entity: sensor.unraid_mnt_disk3_used_percent
name: 'Diskanvändning disk 3'
- entity: sensor.unraid_cpu_used
name: 'Processoranvändning'
- entity: sensor.unraid_ram_used_percent
name: 'Ramanvändning'
- entity: sensor.unraid_ram_used
name: 'Ramanvändning'
- entity: sensor.unraid_package_id_0_temperature
name: 'Temperatur CPU'
- entity: sensor.unraid_acpitz_0_temperature
name: 'Temperatur moderkort'
- type: custom:mini-graph-card
name: Processoranvändning Oden
icon: mdi:cpu-64-bit
entities:
- entity: sensor.unraid_cpu_used
name: Processoranvändning Oden
unit: '%'
color: blue
show:
extrema: true
labels: true
fill: fade
average: true
hours_to_show: 12
points_per_hour: 30
hour24: true
animate: true
decimals: 0
font_size_header: 18
- type: custom:mini-graph-card
name: Oden
icon: mdi:server
entities:
- entity: sensor.unraid_package_id_0_temperature
name: Temperatur CPU
unit: '°C'
color: blue
show:
extrema: true
labels: true
fill: fade
average: true
- entity: sensor.ups_power_delivery
name: Effekt
unit: W
color: green
show:
extrema: true
labels: true
fill: fade
average: true
hours_to_show: 12
points_per_hour: 5
hour24: true
animate: true
decimals: 0
font_size_header: 18
- type: custom:auto-entities
card:
type: entities
title: Unraid UPS
show_header_toggle: false
filter:
include:
- entity_id: "sensor.ups*"
- type: custom:auto-entities
card:
type: entities
title: Docker
show_header_toggle: false
entities:
- sensor.docker_version
- sensor.docker_1cpu
- sensor.docker_memory
- sensor.docker_containers_running
- sensor.docker_containers_stopped
- type: section
label: Containers
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_plexmediaserver
filter:
include:
- entity_id: "sensor.docker_plexmediaserver*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_frigate
filter:
include:
- entity_id: "sensor.docker_frigate*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_traefik
filter:
include:
- entity_id: "sensor.docker_traefik*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_authelia
filter:
include:
- entity_id: "sensor.docker_authelia*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_redis
filter:
include:
- entity_id: "sensor.docker_redis"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_nextcloud
filter:
include:
- entity_id: "sensor.docker_nextcloud*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_wordpress
filter:
include:
- entity_id: "sensor.docker_wordpress*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_pihole
- switch.pi_hole
filter:
include:
- entity_id: "sensor.docker_pihole*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_qbittorrentvpn
filter:
include:
- entity_id: "sensor.docker_qbittorrentvpn*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_duplicati
filter:
include:
- entity_id: "sensor.docker_duplicati*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_mariadb
filter:
include:
- entity_id: "sensor.docker_mariadb*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_code_server_appdata
filter:
include:
- entity_id: "sensor.docker_code_server_appdata*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_code_server_ha
filter:
include:
- entity_id: "sensor.docker_code_server_ha*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_wyoming_piper
filter:
include:
- entity_id: "sensor.docker_wyoming_piper*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_wyoming_whisper
filter:
include:
- entity_id: "sensor.docker_wyoming_whisper*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_apacheguacamole
filter:
include:
- entity_id: "sensor.docker_apacheguacamole*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_unifi_controller
filter:
include:
- entity_id: "sensor.docker_unifi_controller*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_resilio_sync
filter:
include:
- entity_id: "sensor.docker_resilio_sync*"
- type: divider
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
entities:
- switch.docker_esphome
filter:
include:
- entity_id: "sensor.docker_esphome*"
- type: divider
- type: custom:auto-entities
card:
type: entities