2026-07-06 22:47:58 +02:00
|
|
|
const config = {
|
2024-10-12 07:53:58 +02:00
|
|
|
address: "0.0.0.0",
|
|
|
|
|
ipWhitelist: [],
|
2020-07-18 13:57:48 +02:00
|
|
|
timeFormat: 12,
|
|
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
|
{
|
|
|
|
|
module: "calendar",
|
|
|
|
|
position: "bottom_bar",
|
|
|
|
|
config: {
|
2023-10-01 20:13:41 +02:00
|
|
|
customEvents: [{ keyword: "CustomEvent", symbol: "dice", eventClass: "undo" }],
|
2024-01-26 22:56:54 -08:00
|
|
|
forceUseCurrentTime: true,
|
2020-07-18 13:57:48 +02:00
|
|
|
calendars: [
|
|
|
|
|
{
|
2023-04-04 20:44:32 +02:00
|
|
|
maximumEntries: 5,
|
2024-10-25 11:34:35 +02:00
|
|
|
pastDaysCount: 5,
|
|
|
|
|
broadcastPastEvents: true,
|
2020-11-24 14:57:51 +01:00
|
|
|
maximumNumberOfDays: 10000,
|
2020-07-18 21:10:36 +02:00
|
|
|
symbol: "birthday-cake",
|
2020-07-19 11:54:03 +02:00
|
|
|
fullDaySymbol: "calendar-day",
|
|
|
|
|
recurringSymbol: "undo",
|
2023-01-01 18:09:08 +01:00
|
|
|
url: "http://localhost:8080/tests/mocks/calendar_test_icons.ics"
|
2020-07-18 13:57:48 +02:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-10-04 22:48:21 +02:00
|
|
|
};
|
2021-07-05 00:33:50 +02:00
|
|
|
|
2020-07-18 13:57:48 +02:00
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
|
module.exports = config;
|
|
|
|
|
}
|