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

homeassistant

16811 readers
2 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.

top 9 comments
sorted by: hot top controversial new old
[–] roofuskit@lemmy.world 3 points 2 weeks ago* (last edited 2 weeks ago)

I automate my blinds based off their position, the sun position, and the forecasted high temperature for the day. (And the TV if there's on in the room). So I pretty much never use the UI.

But I usually just use the popup UI if I need to make a one off change.

[–] 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!

[–] Courantdair@jlai.lu 2 points 2 weeks ago (1 children)

I use auto-entities, stack-in-card and mushroom:

Everything is compact and I can overview everything quickly. Here everything is closed because it's night here but when they are open they show "open xx%". Also when I double tap they go to 10% which almost closes them but lets a little bit of light pass so it's not too dark (I use it mainly when it's hot outside and the sun directly hit the blind).

Here is the card yaml:

type: custom:auto-entities
card:
  type: custom:stack-in-card
card_param: cards
filter:
  template: |
    [{% for e in states.cover %}
          {
            'type': 'custom:mushroom-cover-card',
            'entity': '{{ e.entity_id }}',
            'name': '{{ device_attr(e.entity_id, "name").removeprefix("Volet ") }}',
            'layout': 'horizontal',
            'show_buttons_control': 'true',
            'show_position_control': 'true',
            'double_tap_action': {
              'action': 'perform-action',
              'perform_action': 'cover.set_cover_position',
              'target': { 'device_id': '{{ device_id(e.entity_id) }}' },
              'data': { 'position': 10 }
            }
          },
    {% endfor %}]
sort:
  method: friendly_name
[–] idunnololz@lemmy.world 2 points 2 weeks ago

Nice! mushroom-cover-card is exactly what I was looking for.

[–] TheMadCodger@piefed.social 2 points 2 weeks ago (1 children)

Yeah, I just set it to the default blinds option, but it's all automated, so I never touch it.

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

I open/close my blinds based on what I'm doing and not the time of day. Usually I leave the blinds open for the cats unless I am doing something specific in an area where the glare is too much and annoying.