this post was submitted on 27 Oct 2025
17 points (100.0% liked)

homeassistant

16819 readers
3 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.

Home Assistant can be self-installed on ProxMox, Raspberry Pi, or even purchased pre-installed: Home Assistant: Installation

Discussion of Home-Assistant adjacent topics is absolutely fine, within reason.
If you're not sure, DM @GreatAlbatross@feddit.uk

founded 2 years ago
MODERATORS
 

I'm looking for a minimalistic layout to control and see the status of blinds in the overview dashboard.

I am currently using the entity card and it works but the downside is that it doesn't show the current blind status. I could add a blind status entity but then the card becomes a lot taller. I wanted to see if anyone has any good layouts for their blinds that doesn't take up too much space and allows them to easily control and see their status (ie. open %).

Pretty much what I want is something that is like what is shown below but with like a 2nd line that shows what the current open % is.

you are viewing a single comment's thread
view the rest of the comments
[–] Chaser@lemmy.zip 2 points 2 weeks ago (1 children)

I just use a tile card. Simple, but great!

    - type: horizontal-stack
      cards:
        - type: tile
          entity: cover.wohnzimmer_rollo_links
          features:
            - type: "cover-open-close"
            - type: "cover-position"
        - type: tile
          entity: cover.wohnzimmer_rollo_rechts
          features:
            - type: "cover-open-close"
            - type: "cover-position"
[–] idunnololz@lemmy.world 2 points 2 weeks ago (1 children)

Hmmm I guess I could try placing them side by side. Will try it after work. Thanks!

[–] Chaser@lemmy.zip 2 points 2 weeks ago (1 children)

Welcomes! Btw: If you want to make it even slimmer, you can also remove features. Or you add some if wanted (like tilting, if your cover supports it).

https://www.home-assistant.io/dashboards/features/

[–] idunnololz@lemmy.world 2 points 2 weeks ago

Oh interesting. I didn't realize I can just use Tile. Thanks!