this post was submitted on 23 Feb 2024
194 points (98.5% liked)

homeassistant

11833 readers
33 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io

founded 1 year ago
MODERATORS
 

I've been putting this off for way too long but I finally installed the LCARs theme in my HA and got to work redesigning all my dashboards.

you are viewing a single comment's thread
view the rest of the comments
[–] scrubbles@poptalk.scrubbles.tech 7 points 6 months ago (1 children)

Very nice! I'm running the same thing with card mod!

Some nitpicks, your light buttons swap those to be left to right, then they'll line up with the bar, or swap the header to swoop right. Same thing with the guages.

I also changed the headers to "Environmental", "Ops", "Engineering", the wife loved that lol.

How did you do the graph in the bottom? Maybe there's an update I don't have...

[–] aniki@lemm.ee 6 points 6 months ago (1 children)

Fixed! I should definitely do an ops-engineering-....

The graph is a sensor card at the bottom of the vert stack with the footer class.

type: vertical-stack
cards:
  - type: markdown
    card_mod:
      class: header
    content: '# Network'
  - type: entities
    entities:
      - entity: sensor.netgear_r7000_external_ip
        name: External IP
      - entity: sensor.netgear_r7000_kib_s_received
        name: Download Traffic
      - entity: sensor.netgear_r7000_kib_s_sent
        name: Upload Traffic
    card_mod:
      class: middle
  - graph: line
    type: sensor
    entity: sensor.netgear_r7000_kib_s_received
    detail: 2
    hours_to_show: 4
    name: Download Traffic
    card_mod:
      class: footer-contained
[–] scrubbles@poptalk.scrubbles.tech 2 points 6 months ago

Nice! I didn't know you could apply the footer to another entity card.. that's a good idea! I'll have to change mine around. The latest HA update broke my styles though, I may have to re-add them