šŸŒ» Lovelace UI ā€¢ Minimalist

Hi guys,
Iā€™m kinda new to all this but Im getting an issue with the ā€œdefault cardsā€ . I have button-card & UI Minimalist installed, however I get the below error when using a template.

image

When I try to add the line at the start of my dashboard, Im assuming to ā€œcallā€ the tempaltes ie.
button_card_templates: !include_dir_merge_named ā€œā€¦/ā€¦/custom_components/ui_lovelace_minimalist/ui_minimalist/ulm_templates/ā€

I get this error
image

As I said bit of a newbie in learning how to put these things altogether, but this is driving me a lil mad.

Im using HAos as a VM, if that makes any difference.

Got this sorted, not a fan of double posting but just in case others come up against this issue.
Its to do ā€œI thinkā€ with trying to create the dashboard in UI mode when it needs to be configured in pure .yaml. So I just used a text editor and edited the default minimilaist Dashboard.

Good evening everyone,

does someone have the frigate card implemented in their minimalist view?

This is the code I use for the card, but is only says custom element doesnā€™t exist: frigate.card

    - type: custom:frigate-card
      cameras:
        - camera_entity: camera.eingang_generisch
          live_provider: ha
          title: Eingang
          icon: mdi:cctv
          hide: false
      view:
        default: live
        dark_mode: auto
        update_force: true
        scan:
          enabled: true
        update_cycle_camera: true
      menu:
        style: hidden
        position: left
        buttons:
          frigate: {}
          substreams:
            enabled: true
          media_player:
            enabled: false
      live:
        preload: true
        show_image_during_load: true
      media_gallery:
        controls:
          thumbnails:
            show_details: false
          filter: {}
      image: {}
      timeline:
        style: ribbon
      view_layout:
        grid-area: camera1

Hi. I have 2 questions.
First, I wonder if I need to install ā€œSimple_weather_cardā€ for using minimalist weather card? If ā€œSimple_weather_cardā€ is not installed i see next error

But in file explorer i can see file simple-weather-card.js in /config/custom_components/ui_lovelace_minimalist/cards/simple-weather-card
Am I missing something?

And second one. Why on screenshot I provided all cards have grey border?

Hey guys,

How do I change the Dashboard name?

image

If I try to change it in the integration I get an error, and it seems to kill HA and HA restarts???

Anyone had this, or know how to rename the dashboards?

Thanks guys

Hi guys a couple questions -

  1. I have an older UI-Minimalist that I have built up and built up, and I see some people try to update the dashboard in the UI. I would assume that would never work and of course I get error messages when I try to do the same. If I start fro scratch is there now some way to have that configurable in the UI (I wouold think not?)?

  2. I have a cover in ui-minialist for my garage door; is there a way to put code for a condition in place, triggered by the click, to disallow it opening, such as if it is clicked while I am not home for exacmple? I know how to do all the coding but not where or how to insert the condition. As a workaround, is there a way on the fly to hide or disable that cover in UI-minimalist depending end upon some condition (such as my location)? The only way I can think of doing this is to remove the cover and place there instead an up and down button and write the ā€˜clickā€™ condition and actions myself (which I can easily do but it is a hassle)ā€¦ Anyone have an elegant solution to this?

There is a lovelace restriction card but I do not know if it would work with UI-minimalistā€¦? Lovelace Restriction Card - Client-side Security

Hello,

I am new with HA so I created my first dashboard using this Minimalist UI, I edited some things in the theme file (/config/themes/minimalist-desktop/minimalist-desktop.yaml) however it seems like all changes made to this file will get reverted upon server reboot, is there any way how to keep these changes permanent? I did not do much changes just edited some variables and added stuff

I searched around and apparently you can override stuff in the themes file by making a custome .css file but I dont know where to start doing that.

Thank you.

Hello,
In my case, the data is located in the directory ā€œ\config\UI_Lovelace_minimalist\ui-Lovelace.yamlā€.
As far as I know, your path is a sample file and resets itself on restart.

Pleas read the Documentation to UI Lovelace:
https://ui-lovelace-minimalist.github.io/UI/setup/configuration/

since few days i cant see the bottom part of the dashboard anymore. Its behind the tabs. what could be the reason?

1 Like

Hey arifroni. Whould you mind to share configuration for such room control on this screen (heating status, internal controls and some other parameters)? That is excactly what Iā€™m trying to have as a unified minimalistic widget per each room!

sure, here you go

- type: custom:vertical-stack-in-card
  cards:
    - type: custom:mushroom-climate-card
      entity: climate.office
      name: Office
      icon: mdi:briefcase
      fill_container: false
      show_temperature_control: true
      hvac_modes:
        - heat
        - 'off'
      tap_action:
        action: more-info
      hold_action:
        action: none
      double_tap_action:
        action: none
      layout: horizontal
    - type: horizontal-stack
      cards:
        - type: custom:mushroom-template-card
          entity: light.office_group_1
          icon: |
            {% if is_state('light.office_group_1', 'unavailable') %}
              mdi:lightbulb-group-off
            {% else %}
              mdi:lightbulb-group
            {% endif %}
          icon_color: |
            {% if is_state('light.office_group_1', 'on') %}
              yellow
            {% else %}
              disabled
            {% endif %}
          tap_action:
            action: toggle
          primary: ''
          layout: vertical
          secondary: Lights1
          badge_color: ''
        - type: custom:mushroom-template-card
          entity: light.office_group_2
          icon: |
            {% if is_state('light.office_group_2', 'unavailable') %}
              mdi:lightbulb-group-off
            {% else %}
              mdi:lightbulb-group
            {% endif %}
          icon_color: |
            {% if is_state('light.office_group_2', 'on') %}
              yellow
            {% else %}
              disabled
            {% endif %}
          tap_action:
            action: toggle
          primary: ''
          layout: vertical
          secondary: Lights2
        - type: custom:mushroom-template-card
          primary: ''
          secondary: >-
            {% if is_state_attr('climate.room_climate_office', 'preset_mode',
            'boost') %}
              Boost ON
            {% else %}
              Boost OFF
            {% endif %}
          icon: mdi:radiator
          layout: vertical
          tap_action:
            action: call-service
            service: script.climate_boost_toggle
            data:
              climate_entity: climate.room_climate_office
            target: {}
          icon_color: >-
            {% if is_state_attr('climate.room_climate_office', 'preset_mode',
            'boost') %}
              red
            {% else %}
              disabled
            {% endif %}
        - type: custom:mushroom-template-card
          primary: ''
          secondary: |-
            T: {{states('sensor.temperature_office')}}Ā°C
            H: {{states('sensor.humidity_office')}}%
            V: {{states('sensor.office_thermostat_valvetappet')}}%
          icon: ''
          layout: vertical
          icon_color: ''
          multiline_secondary: true
          tap_action:
            action: none
          hold_action:
            action: none
          double_tap_action:
            action: none

Last card where i have some information of climate, they are not aligned. If you or somebody knows any way to make that nicer, please do share :slight_smile:

Hey guys
Can somebody please help me here?
What am I doing wrong?

You have to change your Theme in Browsersettings
image

Is there any chance to take the minimalist cards and get them working within the UI as custom card? Without the need of configuring the whole dashboard via yamlā€¦

Just to get the attention from the developer and warn others. Do not update to 2024.12.0 before this bug is fixed:

2 Likes

How can I remove this shadow?
image

Only code that has an effect is --ha-card-background: transparent
All others change nothingā€¦

type: custom:button-card
template: card_scenes
card_mod:
  style: |
    ha-card {
      --ha-card-box-shadow: none;
      --ha-card-background: transparent
      --ha-card-border-width: 0
      --ha-card-border: solid 0px
    } 

That was the solution:

          - type: custom:button-card
            template: card_scenes
            styles:
              card:
                - background-color: transparent
                - border-style: none
                - box-shadow: none

I do not agree (especially since once you fix it, it will not come back again - even after any future upgrades I do not think). As there is an open bug listed in github so it will get worked on eventually - I have also asked them to fix the bug but it is easy - find the file custom_components/ui_lovelace_minimalist/manifest.json, and simply remove the aiofiles==0.8.0 line, restart Home Assistant, and it works again.

Do you try that?

1 Like

I tried it succesfully!
Thanks

1 Like

Getting an error " Set temperature action was used with the target temperature low/high parameter but the entity does not support it." when trying to manually turn up my climate device ? anyone got any ideas ? using the standard thermostat card.