-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathui-lovelace.yaml
4604 lines (4336 loc) ยท 199 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
resources:
############# MOVE FROM "custom_updater" TO "HACS"!!! ##########################
## https://github.com/HACS
## BASICALLY YOU NEED TO ADD EVERY CUSTOM REPO TO HACS
## AND CHANGE ALL URL FROM:" /customcards/custom_lovelace/XXXXXXXXX"
## TO "/hacsfiles/XXXXXXXXX/XXXXXXXXX.js"
## More info at: https://github.com/hacs/integration#why
################################################################################
#################################################################
# JS #
#################################################################
## https://github.com/thomasloven/lovelace-auto-entities #replace ## https://github.com/custom-cards/monster-card
- url: /hacsfiles/lovelace-auto-entities/auto-entities.js
type: module
## https://github.com/custom-cards/state-attribute-element
- url: /hacsfiles/state-attribute-element/state-attribute-element.js
type: js
## https://github.com/custom-cards/text-element
- url: /hacsfiles/text-element/text-element.js
type: js
## https://github.com/thomasloven/lovelace-card-tools
- url: /hacsfiles/lovelace-card-tools/card-tools.js
type: js
## https://github.com/thomasloven/lovelace-layout-card
- url: /hacsfiles/lovelace-layout-card/layout-card.js
type: js
## https://github.com/ljmerza/calendar-card
- url: /hacsfiles/calendar-card/calendar-card.js
type: js
## https://github.com/custom-cards/username-element
- url: /hacsfiles/username-element/username-element.js
type: js
## https://github.com/custom-cards/bignumber-card
- url: /hacsfiles/bignumber-card/bignumber-card.js
type: js
# ## https://github.com/Letherwin/Todoist-List
# - url: /todoist-list/todoist-list.js
# type: js #*************** NOT IN HACS #***************
#################################################################
# Module #
#################################################################
## https://github.com/kalkih/mini-graph-card
- url: /hacsfiles/mini-graph-card/mini-graph-card-bundle.js
type: module
## https://github.com/kalkih/mini-media-player
- url: /hacsfiles/mini-media-player/mini-media-player-bundle.js
type: module
## https://github.com/custom-cards/button-card
- url: /hacsfiles/button-card/button-card.js
type: module
## https://github.com/thomasloven/lovelace-card-mod REPLACE THE CARD-MODDER
- url: /hacsfiles/lovelace-card-mod/card-mod.js
type: module
## https://github.com/clayauld/lovelace-darksky-card -NEW
- url: /hacsfiles/lovelace-darksky-card/lovelace-darksky-card.js #/hacsfiles/lovelace-darksky-card/lovelace-darksky-card.js
type: module
#*****************************************************************************#
#*******************NOT SHOWING UP AT HACS ADDED MANUALLY*********************#
#******************* NEED TO UPDATE MANUALLY !!!! *********************#
#*****************************************************************************#
###### custom_components
# sensor.authenticated
##############################################
# JS #
##############################################
## https://github.com/ofekashery/custom-lovelace/tree/master/israeli-broadcast-schedule-card
- url: /local/custom_lovelace/israeli-broadcast-schedule-card.js #NO Updater
type: js #*************** NOT IN HACS #***************
## https://github.com/dimagoltsman/ha-custom-lovelace-cards/tree/master/remote-control
# more files at /local/content-card-remote-control/
- url: /local/custom_lovelace/content-card-remote-control.js #No Updater
type: js #*************** NOT IN HACS #***************
##############################################
# Module #
##############################################
## https://github.com/ciotlosm/custom-lovelace/tree/master/thermostat-card
- url: /local/custom_lovelace/thermostat-card/thermostat-card.js
type: module #*************** NOT IN HACS #***************
#TODO check if need to be used
# https://github.com/elad-bar/ha-blueiris
# ## https://github.com/thomasloven/lovelace-fold-entity-row
# - url: /customcards/custom_lovelace/fold-entity-row.js #?v=6d11d3
# type: js
# ## https://github.com/Gluwc/bar-card
# - url: /customcards/custom_lovelace/bar-card.js
# type: js
# ## https://github.com/ofekashery/custom-lovelace/tree/master/ynet-card
# - url: /customcards/custom_lovelace/ynet-card.js #NO Updater
# type: js
# - url: /customcards/custom_lovelace/secondaryinfo-entity-row.js
# type: module
## https://github.com/kalkih/extended-entity-row
# ## https://github.com/custom-cards/timer-card
# - url: /customcards/custom_lovelace/timer-card.js
# type: module
# ## https://github.com/bramkragten/custom-ui/tree/master/swipe-card #TODO
# - url: /customcards/custom_lovelace/swipe-card/swipe-card.js #NO Updater
# type: module
#############################################################################################################################################
# #
# VIEW 1 - HOME #
# #
#############################################################################################################################################
title: ืืฉืคืืช ืชืืจืืณืื
views:
- title: Home
panel: true
icon: mdi:home-assistant
background: center / cover no-repeat url("/local/lovelace/background/DarkBlue_HomeKit.jpg") fixed
# the final path is /lovelace/Home
path: Home
cards:
- type: custom:layout-card
layout: vertical
#column_width: 600
cards:
####################################################################
# #
# Home CCTV Card #
# Home CCTV will displayed only if there was a unauthorized entry #
####################################################################
- type: entity-filter
show_empty: false
card:
type: picture-entity
style: |
ha-card {
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
entity: camera.ipc01_snapshot
tap_action:
navigation_path: /lovelace/CCTV
entities:
- camera.ipc01_snapshot
state_filter:
- "recording"
###################################################################
# #
# All the persistent notification will displayed in glance #
# Currently snow only the security related notification #
####################################################################
- type: entity-filter
show_empty: false
card:
type: entities
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
title: ืืชืจืืืช ืืืืื
show_header_toggle: false
state_color: true
entities:
- entity: persistent_notification.ip_ban
name: ืืชืจืืช ืืืืคืื ืืกืื
- entity: persistent_notification.http_login
name: ืืชืจืืช ื ืกืืื ืื ืืกื
state_filter:
- "notifying"
#####################################################################
# #
# Weak batteriese Card #
# Devices with weak batteries will displayed #
#####################################################################
- type: custom:auto-entities #monster-card
show_empty: false
card:
type: glance
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
title: ืืชืงื ืื ืขื ืกืืืืืช ืืืฉืืช
filter:
include:
- entity_id: '*battery_level*'
state: < 25
- attributes:
battery: < 25
- attributes:
battery_level: < 25
exclude:
- entity_id: device_tracker.shiran_iphone
- entity_id: device_tracker.eliran_iphone
#########################################################################
# every time one of the people at home - will be displayed
#########################################################################
- type: entity-filter
show_empty: false
card:
type: glance
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
title: ืืืจืืื ืืืืช
show_state: false
entities:
- device_tracker.android983a5bef7ebe50ce #svet Phone
- device_tracker.redminote4israelkes #israel Phone
- device_tracker.amir_abu_phone_s9 #amir abu
- device_tracker.talamisaiiphone
- device_tracker.guy_keren_phone_s7
state_filter:
- "home"
#####################################################################
# #
# dog walk Card #
# every time the door was open- will be displayed #
#####################################################################
- type: entity-filter
show_empty: false
entities:
- timer.dogwalk
state_filter:
- "active"
- "paused"
card:
type: custom:button-card
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
entity: timer.dogwalk
name: " "
size: 30%
aspect_ratio: 5/1
show_state: true
tap_action:
action: call-service
service: timer.start
service_data:
entity_id: entity
duration: 1800 #30 mins
double_tap_action:
action: call-service
service: timer.pause
service_data:
entity_id: entity
hold_action:
action: call-service
service: timer.finish
service_data:
entity_id: entity
#################################################################
# #
# Home - Eliran Shiran Card #
# #
#################################################################
- type: horizontal-stack
cards:
- type: glance
title: ืืืืจื
columns: 2
entities:
- entity: device_tracker.eliran_iphone_2 #or_iphone
name: ืืืงืื
- entity: sensor.eliran_iphone_connection_type #WIFI/4G
name: ืืืืืจ
- entity: sensor.eliran_iphone_geocoded_location
name: ios
- entity: sensor.eliran_iphone_activity #CAR/Run/walk etc... #TODO FIX
name: ืคืขืืืืช
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
- type: glance
title: ืฉืืจื
columns: 2
entities:
- entity: device_tracker.shiran_iphone #shiran_turgemans_iphone
name: ืืืงืื
- entity: sensor.connection_type_2 #WIFI/4G
name: ืืืืืจ
- entity: sensor.activity_2 #CAR/Run/walk etc...
name: ืคืขืืืืช
- entity: sensor.battery_level_2 #sensor.or_iphone_battery_level
name: ืกืืืื
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
#################################################################
# #
# Home - Eliran Shiran Card #
# #
#################################################################
- type: horizontal-stack
cards:
- type: picture-elements
image: /local/eliran.jpg
elements:
- type: state-label
entity: device_tracker.eliran_iphone_2 #device_tracker.eliran_iphone_wifi #unifi
prefix: 'ืืืืจื - '
style: {color: white, left: 75%, top: 90%}
- type: state-label
entity: device_tracker.eliran_iphone #or_iphone
prefix: 'ืืคื ืืืงืื - '
style:
direction: rtl
top: 10%
left: 50%
- type: state-icon
entity: sensor.eliran_iphone_battery_level
tap_action: more_info
style: {color: white, left: 27%, top: 90%}
- type: state-label
entity: sensor.eliran_iphone_battery_level
style:
color: white
left: 13%
top: 91%
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
#################################################################
# #
# Home - shiran Card #
# #
#################################################################
- type: picture-elements
image: /local/shiran_black.jpg
elements:
- type: state-label
entity: device_tracker.shiran_iphone_2 #unifi #device_tracker.shiran_iphone_wifi
prefix: 'ืฉืืจื - '
style: {color: white, left: 75%, top: 90%}
- type: state-label
entity: device_tracker.shiran_iphone #shiran_turgemans_iphone
prefix: 'ืืคื ืืืงืื - '
style:
direction: rtl
top: 10%
left: 50%
- type: state-icon
entity: sensor.battery_level_2 #sensor.shani_iphone_battery_level
tap_action: more_info
style: {color: white, left: 27%, top: 90%}
- type: state-label
entity: sensor.battery_level_2
style:
color: white
left: 13%
top: 91%
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
#####################################################################
# #
# Home - Lights currently ON at home Card #
# Every time one of the light at home will be ON -will be displayed #
#####################################################################
- type: entity-filter
show_empty: false
card:
type: glance
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
# columns: 3
title: ืชืืืจื ืืืืงื ืืืืช
entities:
- entity: light.white_bulb
tap_action:
action: toggle
- entity: light.living_room_color_bulb
tap_action:
action: toggle
- entity: light.kitchen
tap_action:
action: toggle
- entity: light.service_room
tap_action:
action: toggle
- entity: light.bathroom
tap_action:
action: toggle
- entity: light.sonoff_hallway_light
tap_action:
action: toggle
- entity: light.bedroom
tap_action:
action: toggle
- entity: light.gateway_light
tap_action:
action: toggle
- entity: light.desk_lamp
tap_action:
action: toggle
state_filter:
- "on"
#################################################################
# #
# Home - All Lights toggle buttons Card #
# #
#################################################################
- type: horizontal-stack
cards:
- type: custom:button-card
entity: light.living_room_color_bulb
name: ืกืืื ืืื ื
styles:
card:
- background: url("/local/lovelace/home/living_room.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: custom:button-card
entity: light.white_bulb
name: ืกืืื ืฉืืื
styles:
card:
- background: url("/local/lovelace/home/living_room_left.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: horizontal-stack
cards:
- type: custom:button-card
entity: light.kitchen
name: ืืืื
styles:
card:
- background: url("/local/lovelace/home/kitchen_black.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: custom:button-card
entity: light.service_room
name: ืืืจ ืฉืืจืืช
styles:
card:
- background: url("/local/lovelace/home/laundry_room.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: horizontal-stack
cards:
- type: custom:button-card
entity: light.sonoff_hallway_light
name: ืืกืืจืื
styles:
card:
- background: url("/local/lovelace/home/hallway.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: custom:button-card
entity: light.bathroom
name: ืืงืืืช
styles:
card:
- background: url("/local/lovelace/home/shower_mirror_01.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: horizontal-stack
cards:
- type: custom:button-card
entity: light.bedroom
name: ืืืจ ืฉืื ื
styles:
card:
- background: url("/local/lovelace/home/dark_bedroom.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: custom:button-card
entity: light.desk_lamp
name: ืฉืืื
styles:
card:
- background: url("/local/lovelace/home/desk_lamp.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
- type: custom:button-card
entity: light.gateway_light
name: ืจืืืช
styles:
card:
- background: url("/local/lovelace/home/xiaomi_gateway.png")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)
###############################################################################
# BREAK #
# to break the column right there,and move on to the next one #
###############################################################################
- break
#################################################################
# #
# Home - Welcome Home- Eliran & Shiran Card #
# #
#################################################################
- type: picture-elements
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
image: /local/lovelace/home/greeter-card01.jpg
elements:
- type: state-label
entity: sensor.time
style:
top: 8%
left: 10%
color: rgb(249, 251, 255)
text-shadow: 2px 2px DarkSlateGrey
font-family: Trebuchet MS
font-weight: bold
pointer-events: none
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
font-size: 125%
- type: custom:state-attribute-element
entity: weather.dark_sky
attribute: temperature
suffix: ยฐ
style:
top: 8%
# right: 15%
left: 90%
color: rgb(249, 251, 255)
font-weight: bold
font-family: Trebuchet MS
text-shadow: 2px 2px DarkSlateGrey
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
font-size: 125%
- type: state-label
entity: sensor.dark_sky_summary_0d #sensor.imsweather
prefix: 'ืืชืืืืช ืืืืื: '
style:
direction: rtl
top: 15%
left: 65%
color: rgb(249, 251, 255)
font-family: Trebuchet MS
font-style: oblique
text-shadow: 2px 2px DarkSlateGrey
font-size: 120%
pointer-events: none
font-weight: 400
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: state-label
entity: sensor.time_of_day #ืืืงืจ ืืื ืขืจื ืืื ืืืื ืืื
style:
top: 25%
left: 50%
color: rgb(249, 251, 255)
font-size: 250%
pointer-events: none
text-shadow: 2px 2px DarkSlateGrey
font-family: Trebuchet MS
font-style: oblique
font-weight: 400
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: custom:username-element
style:
top: 35%
left: 50%
color: rgb(249, 251, 255)
font-size: 250%
pointer-events: none
text-shadow: 2px 2px DarkSlateGrey
font-family: Trebuchet MS
font-style: oblique
font-weight: 400
text-rendering: optimizeLegibility
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
-webkit-font-smoothing: antialiased
- type: state-label
entity: sensor.greeter_card_info_2
style:
top: 49%
left: 50%
font-family: Assistant, sans-serif
# - type: custom:state-attribute-element #FIXME
# entity: calendar.icloud_work
# attribute: message
# style:
# top: 57%
# left: 50%
# font-family: Assistant, sans-serif
- type: state-label
entity: sensor.greeter_card_info
style:
top: 76%
left: 50%
font-family: Assistant, sans-serif
- type: custom:state-attribute-element
entity: calendar.personal_eliran_tur2 #icloudhome
attribute: message
style:
top: 83.5%
left: 50%
font-family: Assistant, sans-serif
#################################################################
# #
# Home - Weather Forecast Card #
# #
################################################################# TODO-ZZXZZ
- type: 'custom:lovelace-darksky-card'
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
entity_sun: sun.sun
entity_daily_summary: sensor.dark_sky_daily_summary
entity_current_conditions: sensor.dark_sky_icon
entity_humidity: sensor.dark_sky_humidity
entity_pressure: sensor.dark_sky_pressure
entity_temperature: sensor.dark_sky_temperature
entity_visibility: sensor.dark_sky_visibility
entity_wind_bearing: sensor.dark_sky_wind_bearing
entity_wind_speed: sensor.dark_sky_wind_speed
entity_forecast_high_temp_1: sensor.dark_sky_daytime_high_temperature_1d
entity_forecast_high_temp_2: sensor.dark_sky_daytime_high_temperature_2d
entity_forecast_high_temp_3: sensor.dark_sky_daytime_high_temperature_3d
entity_forecast_high_temp_4: sensor.dark_sky_daytime_high_temperature_4d
entity_forecast_high_temp_5: sensor.dark_sky_daytime_high_temperature_5d
entity_forecast_low_temp_1: sensor.dark_sky_overnight_low_temperature_1d
entity_forecast_low_temp_2: sensor.dark_sky_overnight_low_temperature_2d
entity_forecast_low_temp_3: sensor.dark_sky_overnight_low_temperature_3d
entity_forecast_low_temp_4: sensor.dark_sky_overnight_low_temperature_4d
entity_forecast_low_temp_5: sensor.dark_sky_overnight_low_temperature_5d
entity_forecast_icon_1: sensor.dark_sky_icon_1d
entity_forecast_icon_2: sensor.dark_sky_icon_2d
entity_forecast_icon_3: sensor.dark_sky_icon_3d
entity_forecast_icon_4: sensor.dark_sky_icon_4d
entity_forecast_icon_5: sensor.dark_sky_icon_5d
entity_summary_1: sensor.dark_sky_summary_1d
entity_summary_2: sensor.dark_sky_summary_2d
entity_summary_3: sensor.dark_sky_summary_3d
entity_summary_4: sensor.dark_sky_summary_4d
entity_summary_5: sensor.dark_sky_summary_5d
locale: he
static_icons: false
sunset: true
tooltips: true
tooltip_bg_color: '#323232'
tooltip_border_color: '#646464'
tooltip_border_width: 2.5
tooltip_caret_size: 10
tooltip_fg_color: '#fff'
tooltip_left_offset: -5
tooltip_width: 100
entity_apparent_temp: sensor.dark_sky_apparent_temperature #Feels Like #TODO
entity_current_text: sensor.dark_sky_summary_0d #sensor.imsweather
current_text_font_size: 0.8 em
current_text_top_margin: 65px
current_text_left_pos: 4 em
entity_daytime_high: sensor.dark_sky_daytime_high_temperature_0d
entity_pop: sensor.dark_sky_precip_probability
entity_pop_intensity: sensor.dark_sky_precip_intensity #ืืฉืงืขืื
entity_pop_1: sensor.dark_sky_precip_probability_1d
entity_pop_2: sensor.dark_sky_precip_probability_2d
entity_pop_3: sensor.dark_sky_precip_probability_3d
entity_pop_4: sensor.dark_sky_precip_probability_4d
entity_pop_5: sensor.dark_sky_precip_probability_5d
# slot_l2: remove
# slot_r3: remove
###############################################################################
# BREAK #
# to break the column right there,and move on to the next one #
###############################################################################
- break
#################################################################
# #
# Home - House Card #
# #
#################################################################
- type: picture-elements
style: |
ha-card {
background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
border-radius: 10px;
}
image: /local/lovelace/home/home.jpg
elements:
- type: custom:state-attribute-element
entity: weather.dark_sky
attribute: temperature
suffix: ยฐ
style:
direction: rtl #Set the text direction to "right-to-left" -for Hebrew
top: 8%
left: 73%
font-weight: bold
- type: state-icon
entity: binary_sensor.door_sensor_main_entrance
style:
top: 82%
left: 62.7%
color: white
- type: state-icon
entity: binary_sensor.door_sensor_main_entrance
style:
top: 94%
left: 4%
color: white
- type: state-icon
entity: binary_sensor.xiaomi_motion_sensor_hallway
style:
top: 94%
left: 12%
color: white
- type: state-icon
entity: light.white_bulb
style:
top: 94%
left: 20%
color: white
- type: state-icon
entity: light.living_room_color_bulb
style:
top: 94%
left: 28%
color: white
- type: state-icon
entity: light.kitchen
style:
top: 94%
left: 38%
color: white
- type: state-icon
entity: light.service_room
style:
top: 94%
left: 46%
color: white
- type: state-icon
entity: light.sonoff_hallway_light
style:
top: 94%
left: 54%
color: white
- type: state-icon
entity: light.gateway_light
style:
top: 94%
left: 62%
color: white
- type: state-icon
entity: binary_sensor.door_sensor_bedroom
style:
top: 94%
left: 70%
color: white
- type: state-icon
entity: switch.sonoff_kitchen
style:
top: 94%
left: 78%
color: white
# - type: state-icon
# entity: switch.sonoff_salon
# style:
# top: 94%
# left: 85%
# color: white
- type: state-icon
entity: switch.mqtt_pow2
style:
top: 94%
left: 91%
color: white
- type: state-icon
entity: switch.mqtt_pow1
style:
top: 94%
left: 97%
color: white
## temp ##
- type: state-label
entity: sensor.sensibo2_temp
tap_action:
action: more-info
style:
top: 85%
left: 40%
color: white
font-weight: bold
- type: state-label
entity: sensor.sensibo2_humidity
style:
top: 85%
left: 52%
color: white
font-weight: bold
- type: state-label
entity: sensor.sensibo1_temp
style:
top: 52%
left: 24%
color: white
font-weight: bold
- type: state-label
entity: sensor.sensibo1_humidity
tap_action:
action: more-info
style:
top: 52%
left: 70%
color: white
font-weight: bold
- type: state-label
entity: sensor.temperature_bathroom
style:
top: 80%
left: 23%
color: white
font-weight: bold
- type: state-label
entity: sensor.humidity_bathroom
tap_action:
action: more-info
style:
top: 85%
left: 23%
color: white
font-weight: bold
# - type: state-label
# entity: sensor.upstairs_temperature
# style:
# top: 95%
# left: 87%
# color: white
#################################################################
# #
# Home - All buttons Card #
# #
#################################################################
- type: horizontal-stack
cards:
- type: custom:button-card
entity: switch.sonoff_kitchen
name: ืืฆืืืช ืืืื
styles:
card:
- background: url("/local/lovelace/home/camera_aperture.jpg")
- background-size: 100% 100%
- border-radius: 10px
- border: 1px solid rgba(245,245,245,0.2); /*GRAY*/
# - type: custom:button-card
# entity: switch.sonoff_salon
# name: ืืฆืืืช ืกืืื
# styles:
# card:
# - background: url("/local/lovelace/home/camera_aperture.jpg")
# - background-repeat: no-repeat
# - background-color: rgba(50,50,50,0.5); /*DARKGRAY*/
# - background-size: 100% 100%
# - border-radius: 10px
# - border: solid 1px rgba(100,100,100,0.2)
# - overflow: hidden
#################################################################
# #
# Home - Air-Conditioner toggle #
# #
#################################################################
- type: custom:button-card
entity: climate.living_room
name: ืืืื ืืกืืื
styles:
card:
- background: url("/local/lovelace/home/air_conditioner.jpg")
- background-size: 100% 100%
- background-repeat: no-repeat
- border-radius: 10px
- border: solid 1px rgba(100,100,100,0.2)