I am working on a family calendar, combining 3 Google calendars (my wife’s, my son’s and mine) in 1 display to show upcoming events for the next 2 weeks. After checking out several calendar cards, none of which did what I wanted, I decided to create my own. After working on it for a few evenings I’m pretty happy with the results.
For this view I’m using a single card view, with the custom bootstrap-grid-card and digital clock cards and card_mod for fine tuning the styles, with the following config code:
is it possible to add events by touching the date? this could be a nice feature when its on the wall
That would be a nice addition, but I don’t think Home Assistant has a functionality for that. I’m just using the Home Assistant API to fetch the events. For creating events I’d need to send them directly to the source, which could be a lot of different things.
Hello, can anyone tell me how to display the Lovelace digital clock on my dashboard? I can’t find any instructions on how to install it or how to insert it, thanks
IM building my own here and make it more “cleaner” using the conditional card, so I can only see mine events and my wife hers.
Now I have 2 questions I didnt find on docs.
1 → Is there a way to hide Weekends? Just to clean it a little more, I tried the 5 days function but is not the goal so it didnt work.
2 → I tried also to hide the background shadow using card-mod but had no success, do you know if is there another propriety on this card I have to use?
There is no way to hide the weekends. I could add it, but it always shows today as the first day, so I’m not sure what should happen if today is in the weekend.
The background color for the card is already transparent because noCardBackground is set. I think you mean the event background. That can be set using the eventBackground configuration. You can set that to transparent. No need for card_mod.
For the weekend question, maybe if you set the first day to be always 0 ( sunday ) or 1 ( monday ) and not today could solve that, just a opinion btw, dont know if it will impact on another things.
Ah, I have a theme without box-shadow. I’ll add styling to remove box-shadow if noCardBackground is set.
Until that’s done, have you tried setting “--ha-card-box-shadow: none;” or “box-shadow: none !important;” with car_mod? I think either one of those should work.
This card only shows days in the future (and today), no days in the past. Starting on a fixed week day would change that. For me that would make it much less useful. I show 7 days. If the first day is always Sunday and it’s Saturday now, I wouldn’t see tomorrow. I could see if I can make this configurable if it doesn’t add too much complexity.