| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- let config = {
- address: "0.0.0.0",
- port: 8080,
- basePath: "/",
- ipWhitelist: [],
- useHttps: false,
- language: "de",
- locale: "de-DE",
- logLevel: ["INFO", "LOG", "WARN", "ERROR"],
- timeFormat: 24,
- units: "metric",
- modules: [
- {
- module: 'MMM-Carousel',
- position: 'bottom_bar',
- config: {
- transitionInterval: 30000,
- showPageIndicators: true,
- showPageControls: false,
- ignoreModules: [],
- mode: 'slides',
- slides: {
- Main: [
- { name: 'clock', position: "top_left", carouselId: "1" },
- { name: 'calendar', position: "middle_center", carouselId: "1" }
- ],
- "Slide 2": [
- { name: 'clock', classes: '', position: "top_left", carouselId: "2" }
- ]
- }
- }
- },
- {
- module: 'clock',
- position: "top_left",
- config: {
- timeFormat: 24,
- carouselId: '1'
- }
- },
- {
- module: 'clock',
- position: "top_left",
- config: {
- timeFormat: 12,
- carouselId: '2'
- }
- },
- {
- module: "calendar",
- position: "middle_center", // This can be any of the regions. Best results in left or right regions.
- config: {
- carouselId: "1",
- tableClass: "large wachenaufgaben",
- fetchInterval: 600000,
- maxTitleLength: 50,
- displaySymbol: true,
- maximumNumberOfDays: 1,
- showLocation: false,
- maxTitleLines: 1,
- maximumEntries: 9,
- calendars: [
- {
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/ZMGgBLGn52oATzDw/?export',
- symbolClass: 'todo-symbol',
- titleClass: 'todo-title',
- timeClass: 'todotime',
- symbol: 'clipboard-list-check',
- },
- {
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/WW49cKGiiZyy95q8/?export',
- symbolClass: 'clean-symbol',
- titleClass: 'clean-title',
- timeClass: 'clean-time',
- symbol: 'vacuum',
- },
- {
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/eMQW6HmyjfgS8bXq?export',
- symbolClass: 'info-symbol',
- titleClass: 'info-title',
- timeClass: 'info-time',
- symbol: 'circle-info',
- maximumNumberOfDays: 7,
- }
- ]
- }
- }
- ]
- }
|