forked from pqpxo/SWAKES_hassio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lovelace.yaml
1537 lines (1525 loc) · 52.9 KB
/
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
button_card:
style:
.: |
ha-card {
margin: -20px 0px -105px -35px;
padding: 20px !important;
}
h1 {
font-weight: 500 !important;
font-size: 19px !important;
color: var(--app-header-text-color) !important;
margin: -10px 0px -8px -25px !important;
}
p {
color: var(--secondary-text-color) !important;
font-size: 12px !important;
margin-left: -25px !important;
}
ha-icon {
margin-top: -14px;
background-color: rgba(81, 134, 236, 0.15);
border-radius: 50px;
padding: 10px;
}
cam_card:
style: |
ha-card {
margin: 0px 14px 10px 14px;
box-shadow: var(--card-box-shadow) !important;
}
card_header:
style:
.: |
ha-card {
margin: 10px 0px 0px 8px;
}
ha-markdown:
$: |
h1 {
font-size: 15px !important;
font-weight: 500 !important;
padding: 0px 0px 0px 8px !important;
border-left: 3px solid rgba(81, 134, 236);
color: var(--card-header-text-color);
}
custom_header:
background: var(--primary-background-color)
compact_mode: true
elements_color: var(--primary-text-color)
hide_help: true
hide_unused: true
tab_indicator_color: var(--primary-text-color)
voice_hide: true
title: SWAKES
views:
- badges: []
cards:
- cards:
- entity: weather.home
type: weather-forecast
- entities:
- entity: device_tracker.swakes_huaweip20
icon: 'mdi:human-male'
name: Sam
- entity: device_tracker.iphone
icon: 'mdi:human-female'
name: Nabila
- entity: device_tracker.bedroom_tv
icon: 'mdi:account-group'
name: Guests
type: glance
- cards:
- background: '#2b374e'
entities:
- entity: sensor.next_bus_to_nottingham
name: Bus Arriving
- entity: sensor.next_bus_route
name: Bus Route
- entity: sensor.next_bus_estimated
name: Next Bus
heading: false
row_size: 3
type: 'custom:banner-card'
- background: '#2b374e'
entities:
- sensor.redscan
- sensor.station_street
- sensor.hamilton
heading: false
row_size: 3
type: 'custom:banner-card'
type: vertical-stack
- entities:
- entity: sensor.general
- entity: sensor.recycling_2
icon: 'mdi:recycle'
- entity: sensor.garden
icon: 'mdi:sprout'
type: glance
- entities:
- entity: calendar.samandnabz_gmail_com
type: 'custom:atomic-calendar-revive'
type: vertical-stack
- cards:
- control: false
entity: climate.hallway_thermostat
icon: false
name: false
step_layout: row
type: 'custom:simple-thermostat'
- entities:
- entity: sensor.temperature_27
name: Hallway
- entity: sensor.living_room_temperature
name: Snug
- entity: sensor.temperature_23
name: Kitchen
icon: 'mdi:home-floor-g'
name: Ground Floor
type: 'custom:mini-graph-card'
- entities:
- entity: sensor.temperature_23
name: Hallway
- entity: sensor.living_room_temperature
name: Living Room
icon: 'mdi:home-floor-1'
name: First Floor
type: 'custom:mini-graph-card'
- entities:
- entity: sensor.multi_sensor_2
name: Hallway
- entity: sensor.living_room_temperature
name: Bedroom
- entity: sensor.temperature_23
name: Office
icon: 'mdi:home-floor-2'
name: Second Floor
type: 'custom:mini-graph-card'
type: vertical-stack
icon: 'mdi:home'
path: home
title: ''
- badges: []
cards:
- cards:
- content: |
# Security
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
#font-variant: small-caps;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Security
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:cctv'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Fire
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:fire'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Water
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:water'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Network
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:lan'
operator: default
type: 'custom:button-card'
type: horizontal-stack
- cards:
- cards:
- aspect_ratio: 50%
entity: camera.swk_cr_uniuvc1
image: 'https://demo.home-assistant.io/stub_config/bedroom.png'
show_name: false
show_state: false
type: picture-entity
- aspect_ratio: 50%
entity: camera.swk_cr_uniuvc2
image: 'https://demo.home-assistant.io/stub_config/bedroom.png'
show_name: false
show_state: false
type: picture-entity
type: horizontal-stack
- cards:
- aspect_ratio: 50%
entity: camera.swk_cr_uniuvc3
image: 'https://demo.home-assistant.io/stub_config/bedroom.png'
show_name: false
show_state: false
type: picture-entity
- cards:
- aspect_ratio: 50%
entity: camera.swk_cr_uniuvc1
image: 'https://demo.home-assistant.io/stub_config/bedroom.png'
show_name: false
show_state: false
type: picture-entity
type: horizontal-stack
type: horizontal-stack
type: vertical-stack
- cards:
- entities:
- entity: device_tracker.swakes_huaweip20
name: Sam
type: glance
- entities:
- entity: device_tracker.iphone
name: Nabila
type: glance
- entities:
- entity: device_tracker.grants_iphone
name: Guests
type: glance
type: horizontal-stack
- content: |
# Alarm Panel
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
#font-variant: small-caps;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Arm
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:home-lock'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Disarm
state:
- color: red
icon: 'mdi:home-lock-open'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:home-lock-open'
operator: default
type: 'custom:button-card'
type: horizontal-stack
- cards:
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Home
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:door-closed-lock'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Night
state:
- color: red
icon: 'mdi:home-lock-open'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:weather-night'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Silent
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:volume-off'
operator: default
type: 'custom:button-card'
- color_type: card
entity: binary_sensor.first_hallway_motion
name: Panic
state:
- color: red
icon: 'mdi:alert'
styles:
card:
- animation: blink 2s ease infinite
value: 'on'
- color: '#2b374e'
icon: 'mdi:alarm-light-outline'
operator: default
type: 'custom:button-card'
type: horizontal-stack
type: vertical-stack
- cards:
- content: |
# Ground Floor Sensors
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- entities:
- entity: binary_sensor.openclose_26
secondary_info: last-changed
- entity: binary_sensor.openclose_30
secondary_info: last-changed
- entity: binary_sensor.openclose_20
secondary_info: last-changed
- entity: binary_sensor.openclose_19
secondary_info: last-changed
title: false
type: entities
- entities:
- entity: binary_sensor.ground_hallway_motion
secondary_info: last-changed
- entity: binary_sensor.ground_hallway_motion
name: Snug Motion
secondary_info: last-changed
- entity: binary_sensor.ground_hallway_motion
name: Kitchen Motion
secondary_info: last-changed
type: entities
- entities:
- entity: binary_sensor.fire_alarm
icon: 'mdi:water-off'
name: Kitchen Water Leak
secondary_info: last-changed
- entity: binary_sensor.fire_alarm
icon: 'mdi:fire'
name: Hallway Fire Alarm
secondary_info: last-changed
- entity: binary_sensor.fire_alarm
icon: 'mdi:fire'
name: Kitchen Fire Alarm
secondary_info: last-changed
type: entities
title: false
type: 'custom:vertical-stack-in-card'
- content: |
# First Floor Sensors
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- entities:
- entity: binary_sensor.window_door_sensor
secondary_info: last-changed
- entity: binary_sensor.openclose_22
secondary_info: last-changed
- entity: binary_sensor.window_door_sensor_2
secondary_info: last-changed
title: false
type: entities
- entities:
- entity: binary_sensor.first_hallway_motion
name: Hallway Motion
secondary_info: last-changed
- entity: binary_sensor.ground_hallway_motion
name: Living Room Motion
secondary_info: last-changed
type: entities
- entities:
- entity: binary_sensor.fire_alarm
icon: 'mdi:fire'
name: Hallway Fire Alarm
secondary_info: last-changed
type: entities
title: false
type: 'custom:vertical-stack-in-card'
type: vertical-stack
- cards:
- content: |
# Second Floor Sensors
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- entities:
- entity: binary_sensor.window_door_sensor_4
secondary_info: last-changed
- entity: binary_sensor.window_door_sensor_3
secondary_info: last-changed
- entity: binary_sensor.openclose_21
secondary_info: last-changed
- entity: binary_sensor.window_door_sensor_5
secondary_info: last-changed
title: null
type: entities
- entities:
- entity: binary_sensor.tradfri_motion_sensor
name: Hallway Motion
secondary_info: last-changed
- entity: binary_sensor.tradfri_motion_sensor
name: Master Bedroom Motion
secondary_info: last-changed
- entity: binary_sensor.tradfri_motion_sensor
name: Office Motion
secondary_info: last-changed
type: entities
- entities:
- entity: binary_sensor.fire_alarm
icon: 'mdi:fire'
name: Hallway Fire Alarm
secondary_info: last-changed
- entity: binary_sensor.fire_alarm
icon: 'mdi:fire'
name: Office Fire Alarm
secondary_info: last-changed
type: entities
title: false
type: 'custom:vertical-stack-in-card'
- content: |
# Push Notifications
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- entities:
- text: PIR Motion
type: 'custom:text-divider-row'
- entity: automation.ground_pir_pushover
icon: 'mdi:home-floor-g'
name: Ground Floor Motion
- entity: automation.first_pir_pushover
icon: 'mdi:home-floor-1'
name: First Floor Motion
- entity: automation.office_pir_pushover
icon: 'mdi:home-floor-2'
name: Second Floor Motion
- text: House Alerts
type: 'custom:text-divider-row'
- entity: automation.pushover_letter_box
icon: 'mdi:doorbell'
name: Doorbell Alert
- entity: automation.pushover_letter_box
icon: 'mdi:mailbox'
name: Letterbox Alert
- entity: automation.pushover_letter_box
icon: 'mdi:fridge-alert-outline'
name: Fridge/Freezer Alert
- text: Door Alerts
type: 'custom:text-divider-row'
- entity: automation.pushover_front_door
icon: 'mdi:door-closed'
name: Front Door Alert
- entity: automation.pushover_front_door
icon: 'mdi:door-closed'
name: Back Door Alert
- entity: automation.pushover_front_door
icon: 'mdi:garage'
name: Garage Door Alert
show_header_toggle: false
title: false
type: entities
type: vertical-stack
icon: 'mdi:shield-home'
path: security
visible:
- user: a590c18a02c64a5c95c3b01b888c135f
- badges: []
cards:
- cards:
- content: |
# Hallway
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- entities:
- entity: switch.front_door_lamp
icon: 'mdi:lamp'
name: Front Door Lamp
- entity: switch.front_door_lamp
icon: 'mdi:wall-sconce-flat'
name: Ground Ceiling Lights
- entity: switch.front_door_lamp
icon: 'mdi:wall-sconce-flat'
name: First Ceiling Lights
- entity: light.second_ceiling_lights
icon: 'mdi:wall-sconce-flat'
name: Second Ceiling Lights
type: 'custom:slider-entity-row'
show_header_toggle: false
style: |
.card-content {
padding: 10
}
.card-header {
margin-left: auto;
margin-right: auto;
}
title: false
type: entities
- content: |
# Snug
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- entities:
- entity: switch.sonoff_10004008d2
icon: 'mdi:ceiling-light'
name: Ceiling Light
- entity: switch.sonoff_10004008d2
icon: 'mdi:floor-lamp'
name: Floor Lamp
show_header_toggle: false
style: |
.card-content {
padding: 10
}
.card-header {
margin-left: auto;
margin-right: auto;
}
title: false
type: entities
- content: |
# Kitchen
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- cards:
- entities:
- entity: light.optihub_rgb
icon: 'mdi:wall-sconce-flat'
name: Ceiling Lights
type: 'custom:slider-entity-row'
- entity: light.optihub_rgb
icon: 'mdi:ceiling-light'
name: Table Light
- entity: group.kitchen_rgb
icon: 'mdi:led-strip-variant'
name: RGB Strips
- entity: light.kitchen_corner_rgb
icon: 'mdi:led-strip'
name: Corner
type: 'custom:slider-entity-row'
- entity: light.kitchen_sink_rgb
icon: 'mdi:led-strip'
name: Sink
type: 'custom:slider-entity-row'
- entity: light.kitchen_sink_rgb
icon: 'mdi:led-strip'
name: Boiler
type: 'custom:slider-entity-row'
show_header_toggle: false
style: |
.card-content {
padding: 10
}
.card-header {
margin-left: auto;
margin-right: auto;
}
type: entities
title: false
type: 'custom:vertical-stack-in-card'
type: 'custom:vertical-stack-in-card'
type: vertical-stack
- cards:
- content: |
# Living Room
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- cards:
- entities:
- entity: light.optihub_rgb
icon: 'mdi:globe-light'
name: Ceiling Lights
- entity: switch.living_room_corner_lamp
icon: 'mdi:lamp'
name: Table Lamp
- entity: light.living_room
icon: 'mdi:floor-lamp'
name: Floor Lamp
type: 'custom:slider-entity-row'
- entity: light.living_room_tv_cabinet_rgb_light
icon: 'mdi:led-strip'
name: TV Cabinet
type: 'custom:slider-entity-row'
show_header_toggle: false
type: entities
title: false
type: 'custom:vertical-stack-in-card'
type: 'custom:vertical-stack-in-card'
- content: |
# Master Bedroom
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- cards:
- entities:
- entity: light.master_lights
icon: 'mdi:globe-light'
name: Ceiling Lights
type: 'custom:slider-entity-row'
- entity: switch.sonoff_1000ae39fc_2
icon: 'mdi:desk-lamp'
name: Left Bedside Lamp
- entity: switch.sonoff_1000ae39fc_1
icon: 'mdi:desk-lamp'
name: Right Bedside Lamp
- entity: switch.front_door_lamp
icon: 'mdi:wall-sconce-flat'
name: Ensuite Ceiling Lights
show_header_toggle: false
type: entities
title: false
type: 'custom:vertical-stack-in-card'
- entities:
- entity: group.kitchen_rgb
icon: 'mdi:led-strip-variant'
name: RGB Strips
- entity: light.master_bedside_sam_rgb_light
icon: 'mdi:led-strip'
name: Left Bedside
type: 'custom:slider-entity-row'
- entity: light.master_bedside_sam_rgb_light
icon: 'mdi:led-strip'
name: Right Bedside
type: 'custom:slider-entity-row'
show_header_toggle: false
type: entities
type: 'custom:vertical-stack-in-card'
- content: |
# Office
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- cards:
- cards:
- entities:
- entity: light.office
icon: 'mdi:globe-light'
name: Ceiling Light
type: 'custom:slider-entity-row'
- entity: switch.office_lamp
icon: 'mdi:desk-lamp'
name: Desk Lamp
show_header_toggle: false
type: entities
title: false
type: 'custom:vertical-stack-in-card'
- entities:
- entity: group.kitchen_rgb
icon: 'mdi:led-strip-variant'
name: RGB Strips
- entity: light.kitchen_sink_rgb
icon: 'mdi:led-strip'
name: LEGO Train
type: 'custom:slider-entity-row'
- entity: light.kitchen_sink_rgb
icon: 'mdi:led-strip'
name: Cabinets
type: 'custom:slider-entity-row'
- entity: light.kitchen_sink_rgb
icon: 'mdi:led-strip'
name: Under Desk
type: 'custom:slider-entity-row'
show_header_toggle: false
type: entities
type: 'custom:vertical-stack-in-card'
type: vertical-stack
- cards:
- content: |
# Automations
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- entities:
- entity: group.kitchen_rgb_automations
icon: 'mdi:mailbox-open-outline'
name: Letterbox Notification
- entity: group.kitchen_rgb_automations
icon: 'mdi:stove'
name: Kitchen RGB Motion
- entity: automation.back_door_lights_on_inside
icon: 'mdi:door-open'
name: Back Door RGB
- entity: automation.office_door_night_light
icon: 'mdi:sofa'
name: Living Room RGB
- entity: automation.master_bedroom_door_night_light
icon: 'mdi:bed-king-outline'
name: Master Bedroom Ceiling Light
- entity: automation.office_door_night_light
icon: 'mdi:desk'
name: Office Ceiling Light
show_header_toggle: false
type: entities
- content: |
# Scenes
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- entities:
- entity: automation.back_door_lights_on_inside
icon: 'mdi:weather-night'
name: Bedtime
- entity: automation.back_door_lights_on_inside
icon: 'mdi:gamepad-square'
name: Gaming
- entity: automation.back_door_lights_on_inside
icon: 'mdi:netflix'
name: Netflix
- entity: automation.back_door_lights_on_inside
icon: 'mdi:tree'
name: Garden
show_header_toggle: false
type: entities
type: vertical-stack
icon: 'mdi:lightbulb-group-outline'
path: lights
title: lights
- badges: []
cards:
- cards:
- entity_id:
'1': null
max_results: 15
name: 'Toggle {1}'
service: homeassistant.toggle
service_data: null
type: 'custom:search-card'
type: vertical-stack
icon: 'mdi:database-search'
panel: true
path: search
- badges: []
cards:
- cards:
- content: |
# Home Assistant
style:
.: |
ha-card {
--paper-card-background-color: none !important;
box-shadow: none !important;
}
ha-markdown:
$: |
h1 {
font-size: 25px;
# font-weight: bold;
text-align: center;
letter-spacing: '-0.01em';
}
type: markdown
- entities:
- entity: sensor.hassio_uptime
name: Uptime
- entity: sensor.latest_version
name: Version
- entity: sensor.last_successful_authentication
name: Last Login
- entity: sensor.supervisor_updates
icon: 'mdi:download-network'
name: Updates
style: |
ha-card {
text-align: center;
}
title: false
type: glance
- cards:
- align_icon: left
align_state: center
entities:
- sensor.processor_use
font_size: 75