Week Planner Card Save

Custom Home Assistant card displaying a responsive overview or multiple days with events from one of multiple calendars

Project README

Week Planner Card

GitHub Release GitHub Downloads (all assets, all releases) GitHub commit activity GitHub License Static Badge

Custom Home Assistant card displaying a responsive overview of multiple days with events from one or multiple calendars

Example Week Planner Cards

Table of Content

Installation

  1. Make sure HACS is installed and working.
  2. Add this repository (https://github.com/FamousWolf/week-planner-card) via HACS Custom repositories
  3. Download and install using HACS

Manual

  1. Download and copy eweek-planner-card.js from the latest release into your config/www directory.
  2. Add the resource reference to Home Assistant configuration using one of these methods:
  • Edit your configuration.yaml Add:
    resources:
      - url: /local/week-planner-card.js?version=1.3.0
    type: module
    
  • Using the graphical editor
    1. Make sure advanced mode is enabled in your user profile
    2. Navigate to Configuration -> Lovelace Dashboards -> Resources Tab. Hit orange (+) icon
    3. Enter URL /local/week-planner-card.js and select type "JavaScript Module".
    4. Restart Home Assistant.

Configuration

Main Options

Name Type Default Supported options Description
type string Required custom:week-planner-card Type of the card
days number 7 Any positive integer number The number of days to show
startingDay string today today | tomorrow | yesterday | sunday | monday | tuesday | wednesday | thursday | friday | saturday Day to start with
hideWeekend boolean false false | true Do not show Saturday and Sunday
noCardBackground boolean false false | true Do not show default card background and border
eventBackground string var(--card-background-color, inherit) Any CSS color Background color of the events
compact boolean false false | true Use compact mode, decreasing several spacings and font sizes
updateInterval number 60 Any positive integer number Seconds between checks for new events
calendars object list Required See Calendars Calendars shown in this card
texts object list {} See Texts Texts used in the card
weather object optional See Weather Configuration for optional weather forecast
dateFormat string cccc d LLLL yyyy See Luxon format Format of the date in event details
timeFormat string HH:mm See Luxon format Format of the time
locale string en Any locale string supported by Luxon Locale used for day and month texts
locationLink string https://www.google.com/maps/search/?api=1&query= Any URL Link used for event location in the detail popup
showLocation boolean false false | true Show event location in overview
hidePastEvents boolean false false | true Do not show past events

Calendars

Name Type Default Supported options Description
entity string Required calendar.my_calendar Entity ID
color string optional Any CSS color Color used for events from the calendar

Texts

Name Type Default Supported options Description
fullDay string Entire day Any text Text shown for full day events instead of time
noEvents string No events Any text Text shown when there are no events for a day
today string Today Any text Text shown for today instead of the week day. Set to empty to show week day
tomorrow string Tomorrow Any text Text shown for tomorrow instead of the week day. Set to empty to show week day
yesterday string Yesterday Any text Text shown for yesterday instead of the week day. Set to empty to show week day
sunday string Name of Sunday based on locale Any text Text used to override Sundays
monday string Name of Monday based on locale Any text Text used to override Mondays
tuesday string Name of Tuesday based on locale Any text Text used to override Tuesdays
wednesday string Name of Wednesday based on locale Any text Text used to override Wednesdays
thursday string Name of Thursday based on locale Any text Text used to override Thursdays
friday string Name of Friday based on locale Any text Text used to override Fridays
saturday string Name of Saturday based on locale Any text Text used to override Saturdays

Weather

Name Type Default Supported options Description
entity string Required weather.my_weather_service Entity ID
showCondition boolean true false | true Show condition icon
showTemperature boolean false false | true Show temperature
showLowTemperature boolean false false | true Show low temperature

Examples

Minimal

type: custom:week-planner-card
calendars:
  - entity: calendar.my_calendar_1

Extended

type: custom:week-planner-card
calendars:
  - entity: calendar.my_calendar_1
    color: '#e6c229'
  - entity: calendar.my_calendar_2
    color: '#1a8fe3'
weather:
  entity: weather.my_weather_service
  showTemperature: true
  showLowTemperature: true
days: 14
noCardBackground: true
eventBackground: rgba(0, 0, 0, .75)
locationLink: https://www.openstreetmap.org/search?query=
locale: nl
texts:
  noEvents: Geen activiteiten
  fullDay: Hele dag
  today: Vandaag
  tomorrow: Morgen

Starting on Sunday

type: custom:week-planner-card
calendars:
  - entity: calendar.my_calendar_1
    color: '#e6c229'
  - entity: calendar.my_calendar_2
    color: '#1a8fe3'
startingDay: sunday
texts:
  today: ''
  tomorrow: ''
  yesterday: ''
Open Source Agenda is not affiliated with "Week Planner Card" Project. README Source: FamousWolf/week-planner-card

Open Source Agenda Badge

Open Source Agenda Rating