-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathui-lovelace.yaml
4625 lines (4607 loc) · 225 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
---
kiosk_mode:
entity_settings:
- entity:
input_boolean.hide_header: "on"
hide_header: true
- entity:
input_boolean.hide_header: "off"
hide_header: false
- entity:
input_boolean.hide_sidebar: "on"
hide_sidebar: true
- entity:
input_boolean.hide_sidebar: "off"
hide_sidebar: false
user_settings:
- users:
- OfficePC
ignore_entity_settings: true
hide_sidebar: false
hide_header: false
animated_background:
default_url: "https://cdn.flixel.com/flixel/ypy8bw9fgw1zv2b4htp2.hd.mp4"
entity: "input_select.video_wallpaper"
state_url:
"fullMoon":
- /local/background_videos/fullMoon.mp4
"veniceNight":
- /local/background_videos/veniceNight.mp4
"stormyNight":
- /local/background_videos/stormyNight.mp4
"space":
- /local/background_videos/space.mp4
"island":
- /local/background_videos/island.mp4
"inferno":
- /local/background_videos/inferno.mp4 #purpleNeon
"waves":
- /local/background_videos/waves.mp4
"orangeSunset":
- /local/background_videos/orangeSunset.mp4
"clouds":
- /local/background_videos/clouds.mp4
"bubbling":
- /local/background_videos/bubbling.mp4
"blackBubbles":
- /local/background_videos/blackBubbles.mp4
"greenNeon":
- /local/background_videos/greenNeon.mp4
"fire":
- /local/background_videos/fire.mp4
"fireworks":
- /local/background_videos/fireworks.mp4
"smoked":
- /local/background_videos/smoked.mp4
"berry":
- /local/background_videos/berry.mp4
"moonRising":
- /local/background_videos/moonRising.mp4
"nightClouds":
- /local/background_videos/nightClouds.mp4
"darkskyMoon":
- /local/background_videos/darkskyMoon.mp4
"spookyMoon":
- /local/background_videos/spookyMoon.mp4
"beachyWaves":
- /local/background_videos/beachyWaves.mp4
"cloudyMoon":
- /local/background_videos/cloudyMoon.mp4
title:
New Life Home
# resources: !include lovelace/resources/resources.yaml
# custom_header: !include lovelace/custom_header/custom_header.yaml
# popup_cards: !include_dir_named lovelace/popup-cards
views:
- title: Home
icon: mdi:home-assistant
cards:
- type: custom:popup-card
entity: input_select.popupcard1
title: Cameras
dismissable: true
size: normal
card:
type: vertical-stack
cards:
- type: custom:state-switch
entity: input_select.popupcard1
transition: slide-up
transition_time: 50
states:
popupcard11:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.driveway_cam
tap_action:
action: none
popupcard12:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.front_yard_cam
tap_action:
action: none
popupcard13:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.garage_cam
tap_action:
action: none
popupcard14:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.front_door
tap_action:
action: none
popupcard15:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.patio_cam
tap_action:
action: none
popupcard16:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.backyard_cam
tap_action:
action: none
popupcard17:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.entry_hall_cam
tap_action:
action: none
popupcard18:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.hallway_cam
tap_action:
action: none
popupcard19:
type: picture-glance
camera_view: live
entities: []
camera_image: camera.kitchen_cam
tap_action:
action: none
- type: custom:vertical-stack-in-card
vertical: true
cards:
- type: horizontal-stack
cards:
- type: custom:mushroom-template-card
primary: Driveway
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard11
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Front Yard
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard12
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Garage
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard13
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Porch
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard14
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Patio
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard15
hold_action:
action: call-service
service: input_select.select_next
target:
entity_id: input_select.video_wallpaper
data:
cycle: true
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: horizontal-stack
cards:
- type: custom:mushroom-template-card
primary: Backyard
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard16
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Entry Hall
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard17
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Assist
icon: mdi:account-tie-voice
tap_action:
action: assist
start_listening: true
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Hallway
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard18
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
- type: custom:mushroom-template-card
primary: Kitchen
icon: mdi:cctv
tap_action:
action: call-service
service: input_select.select_option
service_data:
entity_id: input_select.popupcard1
option: popupcard19
layout: vertical
card_mod:
style:
mushroom-shape-icon$: |
.shape {
width: 52px !important;
height: 32px !important;
}
.: |
ha-card {
background: none;
box-shadow: none;
--ha-card-border-width: 0px;
--card-primary-font-size: 14px;
}
:host {
--mush-icon-border-radius: 16px;
}
card_mod:
style: |
:host {
z-index: 999;
position: sticky;
position: -webkit-sticky;
bottom: 0;
font-size: .7em !important;
}
ha-card {
background: rgb(26,26,26);
box-shadow: none;
padding-bottom: 5px;
margin: 0px -8px -10px -8px;
border-radius: 0px;
font-family: 'Sofia Sans Extra Condensed', sans-serif;
font-size: .8em !important;
}
- type: custom:state-switch
entity: input_select.mobilelayout
transition: flip
transition_time: 300
states:
mobile6:
type: vertical-stack
cards:
- type: custom:state-switch
entity: input_select.mobilelayout2
transition: slide-left
transition_time: 300
states:
mobile21:
type: custom:mod-card
card_mod:
style: |
ha-card {
background: center / cover no-repeat url("/local/images-lovelace/backgroundz/blackSteel40197.jpg");
--primary-text-color: white;
border-radius: 12px;
border: solid 3px var(--accent-color);
font-weight: bold;
font-size: 16px;
text-transform: capitalize;
font-variant: small-caps;
width: 100%;
box-sizing: border-box;
margin: 0;
}
div.swiper-button-next {
color: white;
}
card:
type: custom:swipe-card
style: null
parameters:
effect: cube
shadow: true
shadowOffset: 20
shadowScale: 0.94
slideShadows: true
pagination:
type: progressbar
navigation: null
keyboard:
enabled: true
onlyInViewport: true
cards:
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.60);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:clock-weather-card
entity: weather.home
sun_entity: sun.sun
time_format: 12
temperature_sensor: sensor.patio_temperature_2
forecast_rows: 5
tap_action:
action: none
- type: custom:weather-card
entity: weather.khdc_hourly
number_of_forecasts: "4"
details: false
current: false
forecast: true
hourly_forecast: true
tap_action:
action: none
- type: horizontal-stack
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- width: 10px
- type: custom:air-visual-card
hide_weather: false
hide_title: true
unit_of_measurement: AQI
hide_face: false
air_quality_index: >-
sensor.waqi_northshore_site_madisonville_louisiana_usa
air_pollution_level: >-
sensor.waqi_northshore_site_madisonville_louisiana_usa
weather: weather.home
icons: /local/community/air-visual-card
city: Madisonville
- type: custom:button-card
color_type: blank-card
styles:
card:
- width: 10px
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 2px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.65);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 60px
- type: custom:mushroom-title-card
title: Gulf of Mexico
alignment: center
title_tap_action:
action: none
- type: picture-entity
image: >-
https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/gm/Sandwich/GOES16-GM-Sandwich-1000x1000.gif
entity: sun.sun
aspect_ratio: 130%
show_state: false
show_name: false
camera_view: auto
tap_action:
action: none
hold_action:
action: none
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 1px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.90);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 55px
- type: custom:windrose-card
title: Wind direction
tap_action:
action: none
hours_to_show: 4
max_width: 400
refresh_interval: 300
windspeed_bar_location: bottom
windspeed_bar_full: true
wind_direction_entity:
entity: sensor.covington_forecast_wind_bearing
direction_unit: degrees
use_statistics: false
direction_compensation: 0
windspeed_entities:
- entity: sensor.covington_forecast_wind_speed
name: Average
speed_unit: auto
use_statistics: false
output_speed_unit: mps
speed_range_beaufort: true
windrose_draw_north_offset: 0
cardinal_direction_letters: NESW
matching_strategy: direction-first
center_calm_percentage: true
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 105px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.10);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 10px
- type: custom:fluid-level-background-card
card:
type: vertical-stack
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 60px
- type: custom:mushroom-title-card
title: 24 Hour Rain Totals
alignment: center
title_tap_action:
action: none
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 320px
- type: custom:bignumber-card
entity: sensor.home_precipitation_last_24_hours
entity: sensor.office_humidity_2
fill_entity: input_boolean.auto_tablet
level_color:
- 24
- 13
- 229
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 1px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.60);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 60px
- type: custom:mushroom-title-card
title: NOAA RGB Radar
alignment: center
title_tap_action:
action: none
- type: picture-entity
image: >-
https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/smv/13/GOES16-SMV-13-600x600.gif
entity: sun.sun
aspect_ratio: 130%
show_state: false
show_name: false
camera_view: auto
tap_action:
action: none
hold_action:
action: none
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 1px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.60);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 60px
- type: custom:mushroom-title-card
title: Water Vapor Radar
alignment: center
title_tap_action:
action: none
- type: picture-entity
image: >-
https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/smv/GEOCOLOR/GOES16-SMV-GEOCOLOR-600x600.gif
entity: sun.sun
show_state: false
show_name: false
camera_view: auto
aspect_ratio: 16x14
tap_action:
action: none
hold_action:
action: none
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 155px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.60);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 20px
- type: custom:mushroom-title-card
title: Sun & Moon
alignment: center
title_tap_action:
action: none
- type: custom:horizon-card
moon: true
refresh_period: 60
fields:
sunrise: true
sunset: true
dawn: true
noon: true
dusk: true
azimuth: true
sun_azimuth: true
moon_azimuth: true
elevation: true
sun_elevation: true
moon_elevation: true
moonrise: true
moonset: true
moon_phase: false
southern_flip: false
moon_phase_rotation: -10
language: en
time_format: language
number_format: language
debug_level: 0
tap_action:
action: none
hold_action:
action: none
- type: horizontal-stack
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- width: 105px
- type: custom:mushroom-template-card
card_mod:
style: |
ha-card {
background: rgba(0, 0, 0,0.0);
box-shadow: 0px 0px 2px 1px rgba(0, 0, 0,0.0);
border: solid 2px rgba(0, 0, 0,0.0);
}
entity: sensor.moon
icon_color: ""
fill_container: false
picture: >-
/local/moon_phases/{{states(entity)}}.png
primary: Moon Phase
secondary: >-
{% set phase = states(entity) %}
{% if phase == 'last_quarter' %} Last
Quarter
{% elif phase == 'waning_crescent' %}
Waning Crescent
{% elif phase == 'full_moon' %} Full
Moon
{% elif phase == 'first_quarter' %}
First Quarter
{% elif phase == 'waxing_gibbous' %}
Waxing Gibbous
{% elif phase == 'new_moon' %} New Moon
{% elif phase == 'waning_gibbous' %}
Waning Gibbous
{% elif phase == 'waxing_crescent' %}
Waxing Crescent
{% endif %}
- type: custom:button-card
color_type: blank-card
styles:
card:
- width: 45px
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 70px
- type: vertical-stack
cards:
- type: custom:stack-in-card
card_mod:
style: |
ha-card {
border-radius: 12px;
box-shadow: 0px 0px 2px 1px var(--accent-color-lighter);
background: rgba(0, 0, 0,0.70);
--paper-item-icon-color: var(--accent-color);
backdrop-filter: blur(9.1px);
-webkit-backdrop-filter: blur(9.1px);
}
:host {
--paper-item-icon-color: var(--accent-color);
}
mode: vertical
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 65px
- type: horizontal-stack
cards:
- type: custom:button-card
color_type: blank-card
styles:
card:
- width: 10px
- type: custom:air-visual-card
hide_weather: false
hide_title: false
unit_of_measurement: AQI
hide_face: false
air_quality_index: >-
sensor.waqi_northshore_site_madisonville_louisiana_usa
air_pollution_level: >-
sensor.waqi_northshore_site_madisonville_louisiana_usa
weather: weather.home
icons: /local/community/air-visual-card
city: Madisonville
- type: custom:button-card
color_type: blank-card
styles:
card:
- width: 10px
- type: custom:button-card
color_type: blank-card
styles:
card:
- height: 25px
- type: custom:mushroom-title-card
card_mod:
style: |
:host {
height: 55px;
}
title: Allergen Levels
alignment: center
title_tap_action:
action: none
- type: horizontal-stack
cards:
- type: gauge
entity: sensor.allergy_index_today
min: 0
max: 12
severity:
green: 0
yellow: 4.8
red: 9.7
name: Today
- type: gauge