🌻 Lovelace UI • Minimalist

Currently, the following warning message appears when restarting:

2022-01-26 16_19_12-Einstellungen - Home Assistant

What could i do, to remove it?

As far as i can tell, the Warning occurs since i have created a Dashboard via the Integration

Please read the Breaking Changes

yeah i read that and removed it, but the warning is still there

Okay but did you follow next step?

“Do a reconfigure on the integration page, when the entry in the sidebar is gone!”

Hey, so I started with the minimalist theme and I got first problem:


not a clue what icon_info is - I searched for it but didn’t fin anything :confused:

Yes i did this also

hi there,

your counting chips looks great!
I am struggling to make a custom chip for counting how many lights are on in an area.

it would be great if you could share your pill count open?

thanks.
p.s. I am now on the new integration.

okay,
i got a few steps further… i made a fresh clean install (i think i made some wrong settings) and now the Warning is clear:

Wenn the Checkbox is active, then no warning occurs
2022-01-26 20_11_49-Einstellungen - Home Assistant

But i don’t need a second dashboard, i made my own which works as i want
So i unchecked the Option → Restart → Warning is in the Log

Do i need to use the generated Dashboard? Or is there a Error i made?

on this page is explained, how to use your own dashboard.
it worked for me.

https://ui-lovelace-minimalist.github.io/UI/setup/configuration/#add-theme-to-your-lovelace
as explained on the page I added this at the top of my ui-lovelace.

# For future use!
ui_lovelace_minimalist: !include "custom_components/ui_lovelace_minimalist/lovelace/plugins/ui_lovelace_minimalist.yaml"
# Button cards location
button_card_templates: !include_dir_merge_named "custom_components/ui_lovelace_minimalist/__ui_minimalist__/ulm_templates/"

if you have the last version of the integration please remove the first line.

# For future use!
ui_lovelace_minimalist: !include "custom_components/ui_lovelace_minimalist/lovelace/plugins/ui_lovelace_minimalist.yaml"

Will look into that.

Will be fixed when this is merged: Fix Unknown_panel_warning by stokkie90 · Pull Request #336 · UI-Lovelace-Minimalist/UI · GitHub

Hello, i have an issue after installing from HACS.

here is the code of my previous dashboard :

button_card_templates: !include_dir_merge_named lovelace/minimalist-templates/
title: 'UI Mini'
theme: "minimalist-desktop"
background: "var(--background-image)"

kiosk_mode:
  user_settings:
    - users:
        - "tablette"
      kiosk: true

views: !include_dir_list lovelace/views/

the line for using my view folder don’t work
I uncomment the line in the default code, but not view appears.

---
button_card_templates: !include_dir_merge_named "../../custom_components/ui_lovelace_minimalist/__ui_minimalist__/ulm_templates/"

title: "UI Lovelace Minimalist"
theme: "minimalist-desktop"
background: "var(--background-image)"

views: !include_dir_merge_list "views/"

and the result :

what is wrong ?

PS : i copy/paste my view files form my custom view folder to a new folder in config/ to have :

config
└── ui_lovelace_minimalist
       ├── config
       ├── custom_cards
       └── dashboard
        └── ui-lovelace.yaml
└── views
    ├── 01_home.yaml
    ├── 02_meteo.yaml
   ......
    └──0x.....yaml

It needs to be views: !include_dir_merge_list "../../views/. Or put your views folder in the dashboard folder.

What type of installation are you using for the minimalist-theme? HACS or manual?

I used HACS

thank you, it works.
But i have a small bug.
I use tap_action to move toward my differents views.
But now, when a tap on a card or a chip, it moves to the good view but return automatically to the origine view (my “home” view).

Try to use card_light instead of card_light_with_slidercard_light - UI Lovelace Minimalist
That card works better and probably fixes your issue.

What a dummy i am !
the link on my home view was written with my old config.
A little update and it works.

Hi,

I don’t use the “new” one so i guess it won’t fit…you’ll probably have some work on it :man_shrugging:

  pilule_localisation_present:
    tap_action:
      action: navigate
      navigation_path: /lovelace-mobile/localisation
    label: |
      [[[
        var personnes_presentes = states['sensor.ppl_at_home'].state;
        return '🏠 ' +  personnes_presentes;
      ]]]
    template: pilule
  pilule:
    tap_action:
      action: more-info
    show_icon: false
    show_name: false
    show_state: false
    show_label: true
    size: 80%
    styles:
      img_cell:
        - width: 24px
      card:
        - border-radius: 30px
        - box-shadow: var(--box-shadow)
        - height: 36px
        - width: auto
        - padding-left: 6px
        - padding-right: 6px
      grid:
        - grid-template-areas: '"l"'
      label:
        - justify-self: center
        - padding: 0px 6px
        - font-weight: bold
        - font-size: 14px

I’ve got the same issue. Did you fix this? If so, how?

Naamloos

I have an issue with top items on a view that disappear when reloading the view. See animation.

Untitled

It only happens when:

  • Reloading on mobile
  • Views are included in separate files.
views:
 - !include ../views/home.yaml
 - !include ../views/security.yaml
 - !include ../views/lights.yaml
 - !include ../views/heating.yaml
  • If I remove anything but the home.yaml there is no issue reloading
  • If I include one more view than home.yaml it happens. Even if the other view is empty

It’s not specific to chips or any other item. Top of home.yaml looks like this:

title: Home
icon: 'mdi:home-variant'
path: home
cards:
  - type: horizontal-stack
    cards:
    - type: 'custom:button-card'
      template: chip_back
      variables:
        ulm_chip_back_path: /ui-lovelace-minimalist/home
    - type: 'custom:button-card'
      template: chip_alarm
      entity: alarm_control_panel.home_alarm
    - type: 'custom:button-card'
      template: chip_temperature
      variables:
        ulm_chip_temperature_inside: sensor.kitchen_sensor_temperature
        ulm_chip_temperature_outside: sensor.hue_outdoor_motion_sensor_2_temperature
        ulm_chip_temperature_weather: weather.home


  - type: horizontal-stack
    cards:
    - type: 'custom:button-card'
      template: card_title
      name: Scenes
      label: 'Set the mood'

I have tried restarts, emptied cache, YAML configuration reloading etc. Most likely some stupid oversigt by me somewhere that I can’t pinpoint.