Lovelace: Advanced calendar card

Hello guys,
is it possible to make this red area smaller?
I have already tried to change the font size, but the size of the field remains the same.
calendar

I am having issues with the showCalendarName option in Event view not showing the calendar name. I am using V7.0.0-b3. I am trying to create a chore calendar that will show the calendar name as an indicator as to whose task it is that day.

image

type: custom:atomic-calendar-revive
name: Chores
enableModeChange: false
firstDayOfWeek: 1
maxDaysToShow: 7
refreshInterval: 60
entities:
  - entity: calendar.chores_oscar_2
    name: Oscar
    color: red
  - entity: calendar.chores_wyatt_2
    name: Wyatt
showDate: false
calShowDescription: true
showFullDayProgress: true
showDescription: false
showCalendarName: true
showMonth: false
showWeekDay: true
showEventIcon: true
showNoEventsForToday: false
disableEventLink: true
showCurrentEventLine: true
showProgressBar: true
1 Like

An uninstall and reinstall seems to have fixed my issue. I suspect HACS hadn’t upgraded to the V7 beta from V6 properly.

Hi everyone,

Been trying to configure this card to allow a list of things going on for the week in event mode. It doesn’t display multi day events on the list though? Is this normal? See below screen shot. Tuesday should have the NS TROC event as part of the multi day event

Which version of the card do you have installed?

What type of calendar are you using e.g. Google or caldav?

Caldav with Apple

V6.2.0

You would need to use the prerelease version 7 of the card for this feature

1 Like

Does the card support gantt style rendering of multi-day events? Visually I want to show where something runs over multiple days rather than have multiple entries one on each day.

You have event- or calendar view.
totaldebug/atomic-calendar-revive: Custom calendar card for Home Assistant with Lovelace (github.com)

Hi. Did you solved this. I am looking for the same solution. I try to move all from MM to HA.
Please reply if you have a solution! Thanks

No that is not possible

There is no view that matches this in atomic calendar

Is something like this not possible in HA? (Scheduler or how this is called)

Hi, is there a way to limit finished events shown? I have my feed/sleep baby-schedule but I’d like to see only one finished event (and then one upcoming). Anyone know if there is a way to make this happen?

Anyone updated to 2022.6 have the atomic revive working? I just updated from 2022.3.x and I get a card in my lovelace where it was saying this calendar can’t be loaded from home assistant component. It also gives a link to github which gives me a 404.
https://marksie1988.github.io/atomic-calendar-revive/faq.html
The stock lovelace calender card works with events coming up so I don’t know if this is specific to this card or not.

Thanks

Mine is working fine, comes from different repository. This one is being updated almost weekly :wink:


The arrows and calendar icon does have an offset. Is this issue only in my dashboard or does anyone else have the same problem? All other cards are shown perfectly and correct. The YAML is not modified

Yea I’m aware of that, still need to get around to resolving it.

Hopefully soon as I think I’ve just found a solution to another issue I was working on.


Alright. I did a hotfix for my card. Tell me please if there is a solution.

I’ve updated to the latest version (v7.0.0) and the card isn’t acting as I expected it to or the way it did previously.

I have a work calendar that has multi-day events for which shift I’m working.

previously the card would show all the work events per each day that it is on the calendar - both in the past and in the future. Now it only shows the events for this block of days.

here is how it used to look:

image

old config:

- type: "custom:atomic-calendar-revive"
    name: "My Work Calendar"
    defaultMode: Calendar
    firstDayOfWeek: 7
    showLoader: false
    entities:
      - entity: calendar.my_cal_gmail_com
        type: icon
        icon: mdi:weather-sunny
        color: green
        whitelist: days
      - entity: calendar.my_cal_gmail_com
        type: icon
        icon: mdi:weather-night
        color: red
        whitelist: nights
      - entity: calendar.my_cal_gmail_com
        type: icon
        icon: mdi:star
        color: orange
        whitelist: DD

here is how it looks now:

image

new config:

  - type: "custom:atomic-calendar-revive"
    name: "My Work Calendar"
    defaultMode: Calendar
    firstDayOfWeek: 7
    showLoader: false
    showMultiDay: true
    entities:
      - entity: calendar.my_cal_gmail_com
        type: icon
        icon: mdi:weather-sunny
        color: green
        allowlist: days
        showMultiDay: true
      - entity: calendar.my_cal_gmail_com
        type: icon
        icon: mdi:weather-night
        color: red
        allowlist: nights
        showMultiDay: true
      - entity: calendar.my_cal_gmail_com
        type: icon
        icon: mdi:star
        color: orange
        allowlist: DD
        showMultiDay: true

Any suggestions on how to get it to act like the old way?