Family calendar

I’d like to hide the meeting times, I dont want to show the hours to make the calendar cleaner
Also I’d love to be able to resize the temperature font. Love this card :slight_smile:

Did you succeed ? Looking for the same thing…

Solved my own after trying a few things. So here is the process in case someone wants to show/hide calendars from an external button (similar to what the legend does).

  1. Create an input text helper with default value .* (input_text.holiday_calendar_filter)

  2. Created a script that will toggle the values of .* and $^ to filter none or filter all events in the calendar:

  - data:
      entity_id: input_text.holidays_calendar_filter
      value: |
        {% if is_state('input_text.holidays_calendar_filter', '.*') %}
          ^$
        {% else %}
          .*
        {% endif %}
    action: input_text.set_value
alias: Holidays Calendar Visible Filter
description: ""
  1. I used a bubble card button.
  - type: custom:bubble-card
    card_type: button
    button_type: name
    name: Holidays
    icon: mdi:bag-personal
    scrolling_effect: false
    show_icon: true
    show_name: true
    show_state: false
    tap_action:
      action: perform-action
      perform_action: script.holidays_calendar_visible_filter
      target: {}
    button_action:
      tap_action:
        action: perform-action
        perform_action: script.holidays_calendar_visible_filter
        target: {}
  1. Using config template card I apply the regex as the filter. Unfortunately this means no GUI configuration for the calendar.
entities:
  - input_text.holidays_calendar_filter
variables:
  HOLCAL: states['input_text.holidays_calendar_filter']?.state
card:
  type: custom:week-planner-card
  calendars:
    - entity: calendar.holidays_in_united_states
      name: Holidays
      color: "#ff7f00"
      filter: ${ HOLCAL }

Was This ever added? I really want to always show a full month view no matter what day it is today, maybe with today highlighted.

However I cant find any way to do this, Is there a way to start the month on the 1st and display the whole month regardless if the 1st day has passed and it is the 6th or whatever?

//Edit Found it in the closed issues on GitHub, it was added but its not obvious how you do this.

To do a full month starting on 1 and ending on last day of month you need to type in “month” for the total days under “days” .

Now the tricky part is you also need to type in “month” for starting day which is a drop down and doesn’t include this or allow you to type it.

You will need to edit this to “month” in the code editor as below :

days: month

I would ask there is a more obvious setting added to the gui for this view in future.

Thank you for posting this! I was literally searching for the same thing. My issue is that I always want the page to look like a calendar with Sunday being the first day of the week. I feel like the solution you posted above will not allow that since “month” makes the first day of the week be today.

Ugh.

All i want is a calendar card to show the entire month with sunday being the first day. Imagine you were looking at a printed calendar on a wall. That’s what I am hoping for someday with this card. It is AMAZING otherwise!

Finally got my pi and imaged with HA.
I’ve got it on the local network and have been playing about with some very basic dashboard concepts along with integration with Google Calendar.

However I now want to look at these custom dashboards for the family planners.
There are a lot of examples in this thread which show solutions at a code level.

Where do you save this code. I’m assuming its not as easy as doing it from the gui. I’m expecting some level of cli involvement. But a few articles I read reference different cli directories for saving these scripts.

Any pointers for a newbie or even reference to good newbie guides would be appreciated.

Thanks in advance

Hi, the card code has to be added to your dashboard.
Additionally, there is YAML code in this thread for automations (or scripts) which can also be used/added in the webUI

Hi,

Could you elaborate a bit more. The article i found has a github repo on it. The step stats to install the file into the config/www folder

But I cant find this folder.

This was the article/github i was trying to follow for more context.

Thanks in advance

Which article?
The first post, which is about this calendar, refers to GH where all is explained.
If I scroll a few posts up, there are some cards as well and those are installed the way I mentioned in my previous post and the other YAML code is for automations.

None of that needs access to your file system but if you want do that: the keywords are Samba or SSH access to your system.

Sorry thought I’d copy/pasted the link

You’re right, now I see it, sorry.

Well, like I wrote: you need to add Samba or SSH to your HA to be able to copy this to it’s filesystem.

Which type of HA setup are you running?