-
Notifications
You must be signed in to change notification settings - Fork 0
/
lovelace-home.yaml
2421 lines (2420 loc) · 91.3 KB
/
lovelace-home.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: Home
views:
- type: panel
theme: ios-dark-mode
title: overview
background: center / cover no-repeat fixed url('/local/house.jpg')
icon: mdi:home
badges: []
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: grid
cards:
- type: button
tap_action:
action: toggle
entity: light.all_lights_2
name: All
show_state: false
icon: mdi:lightbulb-group
show_icon: true
theme: ios-dark-theme
- type: button
tap_action:
action: toggle
entity: light.bedroom_lights
show_state: false
icon: mdi:lamps
name: MBR
theme: ios-dark-theme
- type: button
tap_action:
action: toggle
entity: light.kitchen_lights
name: Kitch.
show_state: false
icon: mdi:ceiling-light-multiple
theme: ios-dark-theme
- type: button
tap_action:
action: toggle
entity: light.hue_mood
show_state: false
icon: mdi:dome-light
name: Mood
theme: ios-dark-theme
- type: button
tap_action:
action: toggle
entity: light.ikea_retro
show_state: false
icon: mdi:lightbulb-variant-outline
name: Entry
theme: ios-dark-theme
columns: 5
- type: grid
cards:
- type: button
tap_action:
action: toggle
entity: group.power
name: All
show_state: false
icon: mdi:power
theme: ios-dark-theme
- type: button
tap_action:
action: toggle
entity: switch.computers
show_state: false
name: PC's
theme: ios-dark-theme
square: true
columns: 5
- type: entities
theme: ios-dark-theme
entities:
- entity: sensor.schedule_green_waste
name: Green waste
- entity: sensor.schedule_recycle_waste
name: Recycle waste
- type: custom:mini-media-player
entity: media_player.living_room
theme: ios-dark-theme
hide:
power: true
icon: true
source: false
shuffle: true
speaker_group:
platform: sonos
show_group_count: true
sync_volume: true
expanded: true
supports_master: false
entities:
- entity_id: media_player.living_room
name: Sonos Living Room
- entity_id: media_player.patio
name: Sonos Patio
- entity_id: media_player.study_1
name: Sonos Study 1
- entity_id: media_player.study_2
name: Sonos
group: true
volume_stateless: false
name: Sonos Upstairs
sound_mode: icon
artwork: none
info: scroll
- type: vertical-stack
cards:
- type: weather-forecast
entity: weather.fig_tree_pocket
theme: ios-dark-mode
- type: custom:stack-in-card
mode: vertical
cards:
- type: markdown
content: >-
<h3>{{ states('sensor.greetings') }} {{user.split("
")[0]}}</h3>
theme: ios-dark-theme
- type: custom:clockwork-card
locale: en-AU
theme: ios-dark-theme
entity: sensor.date_time_iso
other_time:
- America/New_York
- Europe/London
- type: entities
entities:
- entity: sensor.qld_fuel_u98
name: U98
icon: mdi:gas-station
- entity: sensor.qld_fuel_u95
name: U95
icon: mdi:gas-station-outline
- entity: sensor.qld_fuel_u91
name: U91
icon: mdi:fuel
theme: ios-dark-mode
- type: vertical-stack
cards:
- type: horizontal-stack
theme: ios-dark-theme
cards:
- type: custom:mini-graph-card
name: Down
entities:
- sensor.speedtest_download
line_color: green
line_width: 8
font_size: 75
- type: custom:mini-graph-card
name: Up
entities:
- sensor.speedtest_upload
line_color: blue
line_width: 8
font_size: 75
- type: custom:mini-graph-card
name: Ping
entities:
- sensor.speedtest_ping
line_color: yellow
line_width: 8
font_size: 75
- type: custom:travel-time-card
columns:
- name
- duration
- distance
map: google
show_header: false
entities:
- entity: sensor.waze_city
name: City
icon: mdi:city-variant-outline
- entity: sensor.waze_nudgee
name: Nudgee
icon: mdi:gas-station
- entity: sensor.waze_matt_home
icon: mdi:account
name: Matt home
theme: ios-dark-theme
- type: custom:stack-in-card
mode: horizontal
cards:
- type: custom:mushroom-person-card
entity: person.matt_petersen
use_entity_picture: true
vertical: true
- type: custom:mushroom-person-card
entity: person.laura_petersen
use_entity_picture: true
vertical: true
- type: custom:mushroom-person-card
entity: person.dan_petersen
use_entity_picture: true
vertical: true
- type: custom:stack-in-card
mode: vertical
theme: ios-dark-mode
cards:
- type: custom:button-card
color_type: label-card
color: rgb(27, 24, 24)
name: Queensland Covid
theme: ios-dark-mode
styles: null
card:
- height: 15px
- type: custom:mushroom-chips-card
chips:
- type: entity
theme: ios-dark-mode
entity: sensor.qld_covid_active_cases_total
icon: mdi:virus-outline
icon_color: red
- type: entity
theme: ios-dark-mode
entity: sensor.qld_covid_cases_today
icon_color: orange
icon: mdi:account-group-outline
- type: entity
theme: ios-dark-mode
entity: sensor.qld_covid_active_cases_change_today
icon_color: blue
icon: mdi:account-group-outline
- type: entity
entity: sensor.qld_covid_deaths_today
theme: ios-dark-mode
icon: mdi:skull-scan
icon_color: grey
- type: horizontal-stack
cards:
- type: custom:stack-in-card
mode: vertical
cards:
- type: custom:bar-card
name: X-Box Day
entities:
- entity: sensor.xbox_dan_time
direction: right
min: '0'
max: '3'
unit_of_measurement: h
severity:
- from: '3.1'
to: '10'
color: '#EA3F3D'
- from: '1.6'
to: '3'
color: '#FFA632'
- from: '0'
to: '1.5'
color: '#00A250'
positions:
icon: 'off'
indicator: 'off'
- type: custom:bar-card
name: X-Box Week
entities:
- entity: sensor.xbox_weekly
direction: right
min: '0'
max: '21'
unit_of_measurement: h
severity:
- from: '21.1'
to: '50'
color: '#EA3F3D'
- from: '10.6'
to: '21'
color: '#FFA632'
- from: '0'
to: '10.5'
color: '#00A250'
positions:
icon: 'off'
indicator: 'off'
- type: custom:stack-in-card
mode: vertical
cards:
- type: custom:bar-card
name: Kindle Day
entities:
- entity: sensor.kindle_use_today
direction: right
min: '0'
max: '2'
unit_of_measurement: h
severity:
- from: '0'
to: '.99'
color: '#EA3F3D'
- from: '1'
to: '1.9'
color: '#FFA632'
- from: '2'
to: '4'
color: '#00A250'
positions:
icon: 'off'
indicator: 'off'
- type: custom:bar-card
name: Kindle Week
entities:
- entity: sensor.kindle_weekly
direction: right
min: '0'
max: '14'
unit_of_measurement: h
severity:
- from: '0'
to: '6.9'
color: '#EA3F3D'
- from: '7'
to: '13.9'
color: '#FFA632'
- from: '14'
to: '20'
color: '#00A250'
positions:
icon: 'off'
indicator: 'off'
- type: vertical-stack
cards:
- type: custom:bar-card
name: Storage Used
entities:
- entity: sensor.total_disk_utilisation
direction: up
positions:
name: inside
name: Storage 25 tb
direction: right
min: '0'
max: '25'
unit_of_measurement: tb
severity:
- from: '22'
to: '25'
color: '#EA3F3D'
- from: '12'
to: '21.9'
color: '#FFA632'
- from: '0'
to: '11.0'
color: '#00A250'
positions:
icon: 'off'
name: 'off'
minmax: 'off'
indicator: 'off'
width: 100px
height: 112px
- type: custom:stack-in-card
mode: vertical
cards:
- type: markdown
content: >-
<h3>Pocket Money</h3> Laura: ${{
states('counter.pocketmoney_laura') }}</span></br></br>
Dan: ${{ states('counter.pocketmoney_dan') }} </br></br>
theme: ios-dark-theme
- title: Weather
background: center / cover no-repeat fixed url('/local/dark-sky.jpg')
path: environment
icon: mdi:weather-lightning
type: panel
theme: ios-dark-mode
badges: []
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:weather-card
entity: weather.fig_tree_pocket
details: true
forecast: true
hourly_forecast: false
number_of_forecasts: '6'
- type: iframe
url: >-
https://embed.windy.com/embed2.html?lat=-27.635&lon=152.927&detailLat=-26.269&detailLon=152.864&width=650&height=450&zoom=9&level=surface&overlay=radar&product=radar&menu=&message=&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=default&metricTemp=default&radarRange=-1
aspect_ratio: 71.5%
- type: horizontal-stack
cards:
- type: horizontal-stack
cards:
- type: custom:tempometer-gauge-card
entity: sensor.waqi_rocklea
min: 0
max: 200
title: Air Quality
card_style: custom
severity:
green: 0
yellow: 51
red: 151
icon1: mdi:emoticon-happy
icon2: mdi:emoticon-sick
icon3: mdi:skull
- type: custom:tempometer-gauge-card
entity: sensor.outside_temperature
min: 0
max: 42
title: Outside Temperature
card_style: thermometer
severity:
green: 15
yellow: 26
red: 30
- type: custom:tempometer-gauge-card
entity: sensor.outside_pressure
min: 980
max: 1050
title: Outside Pressure
decimals: 0
severity:
green: 1009
yellow: 1000
red: 980
- type: horizontal-stack
cards:
- type: history-graph
entities:
- entity: sensor.average_weekly_temperature
hours_to_show: 24
refresh_interval: 0
- type: history-graph
entities:
- entity: sensor.waqi_rocklea
hours_to_show: 168
refresh_interval: 0
- type: history-graph
entities:
- entity: sensor.outside_temperature
hours_to_show: 24
refresh_interval: 0
- type: history-graph
entities:
- entity: sensor.outside_pressure
hours_to_show: 24
refresh_interval: 0
- type: markdown
content: >
<h4>{{ states('sensor.moon_phases')}}</h4>
<img src="/local/images/moon_phases/{{
states("sensor.moon")}}.png" />
theme: kibibit-dark-cards
- type: custom:sun-card
- type: panel
theme: ios-dark-mode
path: music
icon: mdi:music
badges: []
cards:
- type: vertical-stack
cards:
- type: vertical-stack
cards:
- type: custom:spotify-card
spotify_entity: media_player.spotify_matthew_petersen
playlist_type: default
account: default
always_play_random_song: true
grid_show_title: true
display_style: grid
limit: 30
grid_covers_per_row: '12'
name: Mini Speakers
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: custom:mini-media-player
entity: media_player.living_room
info: scroll
hide:
power: true
icon: true
source: true
shuffle: false
speaker_group:
platform: sonos
show_group_count: true
sync_volume: true
expanded: false
entities:
- entity_id: media_player.living_room
name: Sonos Living Room
- entity_id: media_player.patio
name: Sonos Patio
- entity_id: media_player.study_1
name: Sonos Study 1
- entity_id: media_player.study_2
name: Sonos Study 2
shortcuts:
hide_when_off: true
columns: 6
buttons:
- name: 60-70's
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:7cLrDE8RR1u6Phl30RO0IN
- name: 80's
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:6naHkghfeIqkTh7zg59aEU
- name: 80's Metal
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:6Y7jX5AA9dvhRMdzdnx5VC
- name: 90's
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:1HQrE0CFBCyQOoyCp2g8lg
- name: Aussie
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:5vNdRqDDETdxbayVorzcAD
- name: Chill
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:37i9dQZF1DX6VdMW310YC7
- name: Club
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:6WjvrpaQEI2JiDoTrBLYWa
- name: Date
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:37i9dQZF1DXalDDvuKwGpK
- name: Dinner
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:3q7KA5dteW52uCWglwne4h
- name: Feel Good
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:38pv3X9r6bbvkcAmJWh0cS
- name: Funk
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:6YXqIQpb7EZGgYk2z87zjY
- name: Jiggy
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:54aeuIjMAejovN8FmBbXvT
- name: Matt's Mix
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:5wMwrEfmI4Dg0oF4JF9XfZ
- name: Mellow
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:4kv1mHe5iXBko88Jtdeptl
- name: Swing
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:4dGhAPTgWk8PefKcVBmQMZ
- name: Techno
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:6Y0NhjmJ0l5eU913NrsaOg
group: true
volume_stateless: false
artwork: cover
name: Sonos Upstairs
- type: vertical-stack
cards:
- type: custom:mini-media-player
info: short
hide:
power: true
icon: true
source: true
shuffle: false
speaker_group:
platform: sonos
show_group_count: true
sync_volume: true
expanded: false
entities:
- entity_id: media_player.study_1
name: Sonos Study 1
- entity_id: media_player.study_2
name: Sonos Study 2
- entity_id: media_player.living_room
name: Sonos Living Room
- entity_id: media_player.patio
name: Sonos Patio
shortcuts:
hide_when_off: true
columns: 6
buttons:
- name: 80's Metal
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:6Y7jX5AA9dvhRMdzdnx5VC
- name: 90's
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:1HQrE0CFBCyQOoyCp2g8lg
- name: Chill
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:37i9dQZF1DX6VdMW310YC7
- name: Coding
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:74wxTpeXRUOHlzcrXyy2qs
- name: Concentration
type: playlist
id: >-
spotify:user:22em7zdows2nhi77teviu2lmi:playlist:019wePCGS39nIP6UCQk0qt
group: true
volume_stateless: false
artwork: cover
name: Sonos Downstairs
entity: media_player.study_1
- title: Where is everyone?
path: where-is
type: panel
icon: mdi:map-marker-radius
theme: ios-dark-mode
badges: []
cards:
- type: map
entities:
- entity: person.matt_petersen
- entity: device_tracker.matt_galtaba
- entity: sensor.qld_fuel_u98
dark_mode: false
- title: Cameras
path: cameras
icon: mdi:camera
theme: ios-dark-mode
badges: []
cards:
- type: picture-glance
title: Kitchen
image: https://demo.home-assistant.io/stub_config/kitchen.png
entities:
- binary_sensor.updater
- binary_sensor.ping_xbox_one
- icon: mdi:car
theme: ios-dark-mode
background: center / cover no-repeat fixed url('/local/mtpan.jpg')
title: car
path: car
badges: []
cards:
- type: vertical-stack
cards:
- type: entities
entities:
- entity: binary_sensor.car_wash
name: Wash car?
theme: ios-dark-mode
- type: entities
entities:
- entity: sensor.qld_fuel_u98
name: U98
icon: mdi:gas-station
- entity: sensor.qld_fuel_u95
name: U95
icon: mdi:gas-station-outline
- entity: sensor.qld_fuel_u91
name: U91
icon: mdi:fuel
- entity: sensor.qld_fuel_e10
name: E10
icon: mdi:gas-station-outline
- entity: sensor.qld_fuel_diesel
name: Diesel
icon: mdi:truck
- entity: sensor.qld_fuel_lpg
name: LPG
icon: mdi:gas-cylinder
theme: ios-dark-mode
- type: entities
entities:
- entity: sensor.anniversary_car_insurance
name: Car insurance $88
icon: mdi:car-traction-control
- entity: sensor.anniversary_car_registration
name: Car rego
theme: ios-dark-mode
title: Reminders
- type: vertical-stack
cards:
- type: custom:travel-time-card
title: Travel Time
columns:
- name
- duration
- distance
- route
map: google
show_header: false
entities:
- entity: sensor.waze_city
name: City
icon: mdi:city-variant-outline
- entity: sensor.waze_nudgee
name: Nudgee
icon: mdi:gas-station
- entity: sensor.waze_clontarf
name: Clontarf
icon: mdi:shops
- entity: sensor.waze_matt_home
icon: mdi:account
name: Matt home
theme: ios-dark-theme
- type: map
entities:
- entity: device_tracker.matt_galtaba
dark_mode: true
- title: Device Health
path: device-health
icon: mdi:bottle-tonic-plus-outline
type: panel
theme: ios-dark-mode
badges: []
cards:
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: custom:stack-in-card
mode: vertical
cards:
- type: grid
title: Device Uptime
cards:
- type: custom:uptime-card
entity: device_tracker.centaurus
ok: home
status_adaptive_color: false
bar: {}
color: {}
init:
animation: raise
title_template: Centaurus
title_adaptive_color: true
show:
average: false
footer: true
status: false
icon: false
header: true
alias:
ok: Ok
ko: Down
alignment:
header: spaced
status: spaced
blink:
effect: fade
target: title
speed: 2
- type: custom:uptime-card
entity: device_tracker.sygnus
ok: home
status_adaptive_color: false
bar: {}
color: {}
init:
animation: raise
title_template: Cygnus
title_adaptive_color: true
show:
average: false
footer: true
status: false
icon: false
header: true
alias:
ok: Ok
ko: Down
alignment:
header: spaced
status: spaced
blink:
effect: fade
target: title
speed: 2
- type: custom:uptime-card
entity: sensor.zigstar_up
ok: Up
status_adaptive_color: false
bar: {}
color: {}
init:
animation: raise
title_template: Zigstar
title_adaptive_color: true
show:
average: false
footer: true
status: false
icon: false
header: true
alias:
ok: Ok
ko: Down
alignment:
header: spaced
status: spaced
blink:
effect: fade
target: title
speed: 2
columns: 4
square: false
square: false
- type: custom:auto-entities
card:
type: entities
title: Device Link Quality
theme: ios-dark-theme
filter:
include:
- entity_id: sensor.*linkquality
exclude:
- state: unavailable
- state: unknown
sort:
method: state
reverse: false
numeric: true
- type: glance
entities:
- entity: sensor.hl_4150cdn_status
name: Status
- entity: sensor.hl_4150cdn_cyan_toner_remaining
name: Cyan
- entity: sensor.hl_4150cdn_black_toner_remaining
name: Black
- entity: sensor.hl_4150cdn_magenta_toner_remaining
name: Magenta
- entity: sensor.hl_4150cdn_yellow_toner_remaining
name: Yellow
theme: ios-dark-mode
title: Brother Printer
- type: vertical-stack
cards:
- type: custom:auto-entities
theme: ios-dark-mode
card:
type: custom:battery-state-card
title: Battery Levels
color_gradient:
- '#ff0000'
- '#ffff00'
- '#00ff00'
filter:
include:
- entity_id: sensor.*_battery
- entity_id: sensor.*_battery_level
exclude: []
sort:
method: state
reverse: false
numeric: true
- type: horizontal-stack
cards: []
- type: custom:auto-entities
card:
type: entities
title: Device Temperatures
theme: ios-dark-theme
filter:
include:
- entity_id: sensor.*temp*
exclude:
- entity_id: sensor.centaurus_temperature_*
- entity_id: sensor.zigstar_temp_f
- entity_id: sensor.fig_tree_*
- entity_id: sensor.*battery*
- entity_id: sensor.*outside*
- entity_id: sensor.ow_temperature
- entity_id: sensor.cpu_temperature
- entity_id: sensor.average_week*
- state: 'off'
- state: unavailable
- state: unknown
sort:
method: state
reverse: true
numeric: true
- type: glance
title: Pi-Hole
entities:
- entity: sensor.pi_hole_ads_blocked_today
name: Ads Blocked
- entity: sensor.pi_hole_domains_blocked
name: Domains Blocked
- entity: sensor.pi_hole_seen_clients
name: Clients
- entity: binary_sensor.pi_hole_core_update_available
theme: ios-dark-mode
- title: Docker
path: docker
icon: mdi:docker
theme: ios-dark-mode
type: panel
badges: []
cards:
- type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: vertical-stack
cards:
- type: glance
entities:
- entity: sensor.docker_version
- entity: sensor.docker_containers_running
- entity: sensor.docker_containers_total
title: Docker
theme: ios-dark-mode
- type: vertical-stack
cards: []
- type: custom:stack-in-card
mode: vertical
cards:
- type: grid
title: Containers
square: false
cards:
- type: custom:uptime-card
title_template: Authelia
entity: sensor.docker_authelia_state
status_adaptive_color: false
color:
ko: '#FF5050'
ok: running
ko: exited
tap_action:
action: more-info
bar: {}
show:
timeline: true
status: false
title: true
header: true
icon: false
footer: true
average: false
alignment:
header: spaced
status: spaced
alias:
ok: Ok
ko: Down
tooltip: {}
title_adaptive_color: true
init:
animation: raise
blink:
effect: fade
target: title
speed: 2
- type: custom:uptime-card
entity: sensor.docker_bazarr_state
status_adaptive_color: false
color:
ko: '#FF5050'
ok: running
ko: exited
tap_action:
action: more-info
bar: {}
show:
timeline: true
status: false
title: true
header: true
icon: false
footer: true
average: false
alignment:
status: spaced
header: left
alias:
ok: Ok
ko: Down
tooltip: {}
title_adaptive_color: true