-
Notifications
You must be signed in to change notification settings - Fork 9
/
ui-lovelace.yaml
1955 lines (1916 loc) · 71.9 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
---
button_card_templates: !include_dir_merge_named "../../custom_components/ui_lovelace_minimalist/__ui_minimalist__/ulm_templates/"
custom_header:
!include "../../lovelace/custom_header/custom_header2.yaml"
title: "UI Lovelace Minimalist"
theme: "minimalist-mobile"
background: "var(--background-image)"
views:
- title: "Home"
path: home
icon: "mdi:home-account"
cards:
- type: "vertical-stack"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: true
border_radius: false
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--main-theme),0.6);
border-radius: var(--border-radius);
}
cards:
# Chips
- !include 'chip_bar.yaml'
# Weather Greeting
- !include 'weather_greeting_small.yaml'
# Favourites
- !include 'favourites_bar.yaml'
# Rooms
- !include 'room_view.yaml'
# Presence
- !include 'presence.yaml'
# Climate
- title: "Climate"
path: climate
icon: "mdi:thermometer"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--color-blue),0.7);
border-radius: var(--border-radius);
}
cards:
- type: "custom:layout-card"
layout_type: grid
layout:
grid-template-columns: 24% 76%
margin: 0px 0px 0px 0px
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-blue-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: chip_back
variables:
ulm_chip_back_path: /ui-lovelace-minimalist/home
- type: 'custom:button-card'
template: chip_navigate
variables:
ulm_chip_navigate_path: /ui-lovelace-minimalist/home
ulm_chip_navigate_icon: mdi:home
- type: "custom:button-card"
color_type: blank-card
- type: "custom:button-card"
template:
- "card_title_icon"
name: "Climate"
variables:
ulm_card_navigate_title: Climate
ulm_card_navigate_icon: mdi:thermometer
icon_color: blue
background_color: blue-bg
- type: "vertical-stack"
cards:
- type: custom:swipe-card
parameters:
spaceBetween: 8
pagination:
type: 'bullets'
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: "custom:button-card"
template:
- "card_input_boolean"
- "red_on"
- "ulm_language_variables"
entity: input_boolean.cold_night
name: "Cold Night"
- type: "custom:button-card"
template:
- "card_input_boolean"
- "blue_on"
- "ulm_language_variables"
entity: input_boolean.hot_night
name: "Hot Night"
- type: "custom:button-card"
color_type: blank-card
styles:
card:
- height: 2px
- type: "custom:button-card"
template: card_thermostat
entity: climate.air_conditioner
variables:
ulm_card_thermostat_enable_collapse: false
ulm_card_thermostat_enable_controls: true
ulm_card_thermostat_enable_hvac_modes: true
ulm_card_thermostat_enable_popup: true
ulm_card_thermostat_enable_background_color: false
ulm_card_thermostat_enable_display_temperature: true
ulm_card_thermostat_icon: "mdi:thermostat"
- type: "custom:button-card"
template: card_thermostat
entity: climate.rumpus_room_ac
variables:
ulm_card_thermostat_enable_collapse: false
ulm_card_thermostat_enable_controls: true
ulm_card_thermostat_enable_hvac_modes: true
ulm_card_thermostat_enable_popup: true
ulm_card_thermostat_enable_background_color: false
ulm_card_thermostat_enable_display_temperature: true
ulm_card_thermostat_icon: "mdi:thermostat"
- type: "custom:button-card"
template: card_thermostat
entity: climate.outdoor_heater
variables:
ulm_card_thermostat_enable_collapse: false
ulm_card_thermostat_enable_controls: true
ulm_card_thermostat_enable_hvac_modes: true
ulm_card_thermostat_enable_popup: true
ulm_card_thermostat_enable_background_color: false
ulm_card_thermostat_enable_display_temperature: true
ulm_card_thermostat_icon: "mdi:patio-heater"
- type: "custom:button-card"
color_type: blank-card
styles:
card:
- height: 30px
- type: vertical-stack
cards:
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Girl's Room"
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-blue)"
ulm_card_graph_name: Temperature
ulm_card_graph_entity: sensor.girls_sensor_temperature
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-red)"
ulm_card_graph_name: Humidity
ulm_card_graph_entity: sensor.girls_sensor_humidity
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Seb's Room"
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-blue)"
ulm_card_graph_name: Temperature
ulm_card_graph_entity: sensor.sebs_sensor_temperature
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-red)"
ulm_card_graph_name: Humidity
ulm_card_graph_entity: sensor.sebs_sensor_humidity
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Main Bedroom"
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-blue)"
ulm_card_graph_name: Temperature
ulm_card_graph_entity: sensor.bedroom_sensor_temperature
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-red)"
ulm_card_graph_name: Humidity
ulm_card_graph_entity: sensor.bedroom_sensor_humidity
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Rumpus"
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-blue)"
ulm_card_graph_name: Temperature
ulm_card_graph_entity: sensor.rumpus_sensor_temperature
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
- type: 'custom:button-card'
template: card_graph
variables:
ulm_card_graph_color: "var(--google-red)"
ulm_card_graph_name: Humidity
ulm_card_graph_entity: sensor.rumpus_sensor_humidity
ulm_card_graph_type: fill
ulm_card_graph_hours: 24
# Energy - Need to add Power swipe
- title: "Energy"
icon: mdi:home-lightning-bolt-outline
path: energy
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--color-green),0.7);
border-radius: var(--border-radius);
}
cards:
- type: "custom:layout-card"
layout_type: grid
layout:
grid-template-columns: 24% 76%
margin: 0px 0px 0px 0px
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-green-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: chip_back
variables:
ulm_chip_back_path: /ui-lovelace-minimalist/home
- type: 'custom:button-card'
template: chip_navigate
variables:
ulm_chip_navigate_path: /ui-lovelace-minimalist/home
ulm_chip_navigate_icon: mdi:home
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-green-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: "custom:button-card"
template: chip_mdi_icon_state_nb
variables:
ulm_chip_mdi_icon_state_entity: sensor.power_kw
ulm_chip_mdi_icon_state_icon: mdi:lightning-bolt
- type: "custom:button-card"
template: chip_mdi_icon_state_nb_nu
variables:
ulm_chip_mdi_icon_state_entity: sensor.electricity_cost_today
ulm_chip_mdi_icon_state_icon: mdi:currency-usd
- type: "custom:button-card"
template:
- "card_title_icon"
name: "Energy"
variables:
ulm_card_navigate_title: Energy
ulm_card_navigate_icon: mdi:home-lightning-bolt-outline
icon_color: green
background_color: green-bg
- type: horizontal-stack
cards:
- type: energy-date-selection
style: |
ha-card {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
padding-bottom: 0px;
padding-top: 0px;
}
- type: horizontal-stack
cards:
- type: energy-usage-graph
style: |
ha-card {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
- type: horizontal-stack
cards:
- type: energy-distribution
style: |
ha-card {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
- type: horizontal-stack
cards:
- type: energy-devices-graph
style: |
ha-card {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}
# Vacuum
- title: "Vacuum"
path: vacuum
icon: "phu:roborock"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--color-yellow),0.7);
border-radius: var(--border-radius);
}
cards:
- type: "custom:layout-card"
layout_type: grid
layout:
grid-template-columns: 24% 76%
margin: 0px 0px 0px 0px
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-yellow-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: chip_back
variables:
ulm_chip_back_path: /ui-lovelace-minimalist/home
- type: 'custom:button-card'
template: chip_navigate
variables:
ulm_chip_navigate_path: /ui-lovelace-minimalist/home
ulm_chip_navigate_icon: mdi:home
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-yellow-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: conditional
conditions:
- entity: vacuum.robomac
state: "error"
card:
type: "custom:button-card"
template: chip_mdi_icon_only
variables:
ulm_chip_mdi_icon_only_entity: vacuum.robomac
ulm_chip_mdi_icon_only_icon: mdi:alert-circle
ulm_chip_mdi_icon_only_icon_color: var(--color-red)
- type: "custom:button-card"
template: chip_mdi_icon_state_nb
variables:
ulm_chip_mdi_icon_state_entity: sensor.robomac_brush
ulm_chip_mdi_icon_state_icon: mdi:broom
- type: "custom:button-card"
template: chip_mdi_icon_state_nb
variables:
ulm_chip_mdi_icon_state_entity: sensor.robomac_dirt_sensor
ulm_chip_mdi_icon_state_icon: mdi:leak
- type: "custom:button-card"
template: chip_mdi_icon_state_nb
variables:
ulm_chip_mdi_icon_state_entity: sensor.robomac_filter
ulm_chip_mdi_icon_state_icon: mdi:air-filter
- type: "custom:button-card"
template: chip_mdi_icon_state_nb
variables:
ulm_chip_mdi_icon_state_entity: sensor.robomac_side_brush
ulm_chip_mdi_icon_state_icon: mdi:brush
- type: "custom:button-card"
template:
- "card_title_icon"
name: "Robomac"
variables:
ulm_card_navigate_title: Robomac
ulm_card_navigate_icon: phu:roborock
icon_color: yellow
background_color: yellow-bg
- type: custom:xiaomi-vacuum-map-card
style: |
ha-card {
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
--map-card-primary-color: rgba(var(--color-yellow),0.5);
--map-card-secondary-color: rgba(var(--color-yellow),0.2);
--map-card-zoomer-background: rgba(var(--color-yellow),0.05);
--map-card-room-icon-color: rgb(var(--color-grey));
--map-card-room-icon-color-selected: rgb(var(--color-yellow));
--map-card-predefined-point-icon-color: rgb(var(--color-grey));
--map-card-predefined-point-icon-color-selected: rgb(var(--color-yellow));
}
entity: vacuum.robomac
map_source:
camera: camera.xiaomi_cloud_map_extractor
vacuum_platform: default
append_tiles: true
tiles:
- label: "Last Clean"
entity: sensor.robomac_last_clean
icon: mdi:clock-check-outline
calibration_source:
camera: true
map_modes:
- template: vacuum_clean_zone
- template: vacuum_goto
- template: vacuum_goto_predefined
predefined_selections:
- position: [ 28450, 32820 ]
icon:
name: "mdi:trash-can"
x: 28450
y: 32820
- template: vacuum_clean_segment
predefined_selections:
- id: 1
icon:
name: "mdi:bunk-bed"
x: 33500
'y': 31600
- id: 2
icon:
name: "mdi:toilet"
x: 30750
'y': 32000
- id: 16
icon:
name: "mdi:fridge"
x: 28500
'y': 30200
- id: 19
icon:
name: "mdi:food-turkey"
x: 24550
'y': 30000
- id: 20
icon:
name: "mdi:bed-king"
x: 18000
'y': 26000
- id: 21
icon:
name: "mdi:bed-single"
x: 31500
'y': 26000
- id: 22
icon:
name: "mdi:sofa"
x: 22900
'y': 26000
- id: 23
icon:
name: "mdi:airballoon"
x: 28000
'y': 26000
# Settings
- title: "Settings"
path: settings
icon: "mdi:cog-outline"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--color-grey),0.7);
border-radius: var(--border-radius);
}
cards:
- type: "custom:layout-card"
layout_type: grid
layout:
grid-template-columns: 24% 76%
margin: 0px 0px 0px 0px
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var--(color-grey-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: chip_back
variables:
ulm_chip_back_path: /ui-lovelace-minimalist/home
- type: 'custom:button-card'
template: chip_navigate
variables:
ulm_chip_navigate_path: /ui-lovelace-minimalist/home
ulm_chip_navigate_icon: mdi:home
- type: "custom:button-card"
color_type: blank-card
- type: "custom:button-card"
template:
- "card_title_icon"
name: "Settings and Information"
variables:
ulm_card_navigate_title: Settings and Information
ulm_card_navigate_icon: mdi:cog-outline
icon_color: grey
background_color: grey-bg
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
- notification_alert
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/HA
ulm_card_navigate_title: Home Assistant
ulm_card_navigate_icon: mdi:home-assistant
alert_entity: group.updaters
icon_color: ha-blue
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/network
ulm_card_navigate_title: Network
ulm_card_navigate_icon: mdi:wifi
icon_color: purple
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/batteries
ulm_card_navigate_title: Batteries
ulm_card_navigate_icon: mdi:battery
icon_color: green
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/devices
ulm_card_navigate_title: Devices
ulm_card_navigate_icon: mdi:devices
icon_color: teal
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
- notification_alert
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/NAS
ulm_card_navigate_title: NAS
ulm_card_navigate_icon: mdi:nas
alert_entity: binary_sensor.macnas_update_available
icon_color: pink
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/calendar
ulm_card_navigate_title: Calendars
ulm_card_navigate_icon: mdi:calendar
icon_color: orange
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/doors
ulm_card_navigate_title: Doors
ulm_card_navigate_icon: mdi:door
icon_color: green
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/appliances
ulm_card_navigate_title: Appliances
ulm_card_navigate_icon: mdi:dishwasher
icon_color: red
- type: custom:button-card
template:
- card_navigate_mod
- custom_icon_color
variables:
ulm_card_navigate_path: /ui-lovelace-minimalist/lights
ulm_card_navigate_title: Lights
ulm_card_navigate_icon: mdi:lightbulb-variant-outline
icon_color: yellow
# Settings -> Calendars
- title: "Calendars"
path: calendar
visible: false
icon: "mdi:calendar"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--color-orange),0.7);
border-radius: var(--border-radius);
}
cards:
- type: "custom:layout-card"
layout_type: grid
layout:
grid-template-columns: 24% 76%
margin: 0px 0px 0px 0px
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-orange-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: chip_back
variables:
ulm_chip_back_path: /ui-lovelace-minimalist/settings
- type: 'custom:button-card'
template: chip_navigate
variables:
ulm_chip_navigate_path: /ui-lovelace-minimalist/home
ulm_chip_navigate_icon: mdi:home
- type: "custom:button-card"
color_type: blank-card
- type: "custom:button-card"
template:
- "card_title_icon"
name: "Calendars"
variables:
ulm_card_navigate_title: Calendars
ulm_card_navigate_icon: mdi:calendar
icon_color: orange
background_color: orange-bg
- type: custom:swipe-card
parameters:
spaceBetween: 8
pagination:
type: 'bullets'
cards:
- type: vertical-stack
cards:
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Ben and Jess"
- type: "custom:calendar-card"
progressBar: true
showLocation: true
hideHeader: true
entities:
- calendar.benandjess7_gmail_com
- type: "custom:button-card"
color_type: blank-card
styles:
card:
- height: 30px
- type: vertical-stack
cards:
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Eden and Siena"
- type: "custom:calendar-card"
progressBar: true
showLocation: true
hideHeader: true
entities:
- calendar.eden_and_siena
- type: "custom:button-card"
color_type: blank-card
styles:
card:
- height: 30px
- type: vertical-stack
cards:
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Holidays"
- type: "custom:calendar-card"
progressBar: true
showLocation: true
hideHeader: true
entities:
- calendar.holidays
- type: "custom:button-card"
color_type: blank-card
styles:
card:
- height: 30px
# Doors
- title: "Doors"
path: doors
visible: false
icon: "mdi:door-open"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {
background-color: rgba(var(--color-green),0.7);
border-radius: var(--border-radius);
}
cards:
- type: "custom:layout-card"
layout_type: grid
layout:
grid-template-columns: 24% 76%
margin: 0px 0px 0px 0px
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-green-bg),1.0);
border-radius: var(--border-radius-bar);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: 'custom:button-card'
template: chip_back
variables:
ulm_chip_back_path: /ui-lovelace-minimalist/home
- type: 'custom:button-card'
template: chip_navigate
variables:
ulm_chip_navigate_path: /ui-lovelace-minimalist/home
ulm_chip_navigate_icon: mdi:home
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: false
margin: false
border_radius: true
background: false
outer_padding: false
style: |
ha-card {
background-color: rgba(var(--color-green-bg),1.0);
border-radius: var(--border-radius);
box-shadow: none;
}
cards:
- type: horizontal-stack
cards:
- type: conditional
conditions:
- entity: sensor.current_doors_open
state_not: "0"
card:
type: "custom:button-card"
template: chip_mdi_icon_state_nb
variables:
ulm_chip_mdi_icon_state_entity: sensor.current_doors_open
ulm_chip_mdi_icon_state_icon: mdi:door-open
- type: "custom:button-card"
template:
- "card_title_icon"
name: "Doors"
variables:
ulm_card_navigate_title: Doors
ulm_card_navigate_icon: mdi:door
icon_color: green
background_color: green-bg
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Garage"
- type: "custom:auto-entities"
card:
type: "grid"
columns: 2
square: false
card_param: "cards"
sort:
count: 20
method: "state"
reverse: "true"
filter:
include:
- attributes:
device_class: "garage"
options:
type: "custom:button-card"
template:
- "card_input_boolean"
- "green_on"
- "ulm_language_variables"
entity: "this.entity_id"
tap_action:
action: "more-info"
- type: "custom:button-card"
template: "card_title_fixed_small"
name: "Doors"
- type: "custom:auto-entities"
card:
type: "grid"
columns: 2
square: false
card_param: "cards"
sort:
count: 20
method: "state"
reverse: "true"
filter:
include:
- attributes:
device_class: "door"
options:
type: "custom:button-card"
template:
- "card_input_boolean"
- "green_on"
- "ulm_language_variables"
entity: "this.entity_id"
tap_action:
action: "more-info"
exclude:
- entity_id: "binary_sensor.lounge_doors"
# Lights
- title: "Lights"
path: lights
visible: false
icon: "mdi:lightbulb"
cards:
- type: custom:stack-in-card
mode: vertical
keep:
box_shadow: true
margin: true
border_radius: true
background: true
outer_padding: true
style: |
ha-card {