2023-09-29 21:01:11 +03:00
---
title: Calendar
description: Calendar widget
---
2023-10-21 00:31:19 +01:00
## Monthly view
2023-09-29 21:01:11 +03:00
< img alt = "calendar" src = "https://user-images.githubusercontent.com/5442891/271131282-6767a3ea-573e-4005-aeb9-6e14ee01e845.png" >
This widget shows monthly calendar, with optional integrations to show events from supported widgets.
```yaml
widget:
type: calendar
firstDayInWeek: sunday # optional - defaults to monday
2023-10-21 00:31:19 +01:00
view: monthly # optional - possible values monthly, agenda
maxEvents: 10 # optional - defaults to 10
2023-11-25 16:17:25 +00:00
showTime: true # optional - show time for event happening today - defaults to false
2024-01-17 23:00:51 +00:00
timezone: America/Los_Angeles # optional and only when timezone is not detected properly (slightly slower performance) - force timezone for ical events (if it's the same - no change, if missing or different in ical - will be converted to this timezone)
2023-09-29 21:01:11 +03:00
integrations: # optional
2023-11-25 16:17:25 +00:00
- type: sonarr # active widget type that is currently enabled on homepage - possible values: radarr, sonarr, lidarr, readarr, ical
2023-09-29 21:01:11 +03:00
service_group: Media # group name where widget exists
service_name: Sonarr # service name for that widget
color: teal # optional - defaults to pre-defined color for the service (teal for sonarr)
params: # optional - additional params for the service
unmonitored: true # optional - defaults to false, used with *arr stack
2023-11-25 16:17:25 +00:00
- type: ical # Show calendar events from another service
url: https://domain.url/with/link/to.ics # URL with calendar events
name: My Events # required - name for these calendar events
color: zinc # optional - defaults to pre-defined color for the service (zinc for ical)
params: # optional - additional params for the service
showName: true # optional - show name before event title in event line - defaults to false
2023-09-29 21:01:11 +03:00
```
2023-10-21 00:31:19 +01:00
## Agenda
This view shows only list of events from configured integrations
```yaml
widget:
type: calendar
view: agenda
maxEvents: 10 # optional - defaults to 10
2023-11-25 16:17:25 +00:00
showTime: true # optional - show time for event happening today - defaults to false
2023-11-25 04:32:38 +00:00
previousDays: 3 # optional - shows events since three days ago - defaults to 0
2023-10-21 00:31:19 +01:00
integrations: # same as in Monthly view example
```
## Integrations
2023-09-29 21:01:11 +03:00
Currently integrated widgets are [sonarr ](sonarr.md ), [radarr ](radarr.md ), [lidarr ](lidarr.md ) and [readarr ](readarr.md ).
Supported colors can be found on [color palette ](../../configs/settings.md#color-palette ).
2023-11-25 16:17:25 +00:00
### iCal
This custom integration allows you to show events from any calendar that supports iCal format, for example, Google Calendar (go to `Settings` , select specific calendar, go to `Integrate calendar` , copy URL from `Public Address in iCal format` ).