| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- let config = {
- port: 8080,
- language: "de",
- locale: "de-DE",
- timeFormat: 24,
- units: "metric",
- modules: [
- /**====================== Definiton des Carousels ========================**/
- {
- 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"
- }
- ],
- }
- }
- },
- /**====================== Definitonen der Uhren ========================**/
- {
- module: "clock",
- position: "top_left",
- config: {
- timeFormat: 24,
- carouselId: "1"
- }
- },
- /**====================== Definitonen der Kalender ========================**/
- {
- module: "calendar",
- position: "middle_center",
- config: {
- tableClass: "large wachenaufgaben",
- fetchInterval: 600000,
- maxTitleLength: 50,
- displaySymbol: true,
- 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',
- maximumNumberOfDays: 1
- },
- {
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/WW49cKGiiZyy95q8/?export',
- symbolClass: 'clean-symbol',
- titleClass: 'clean-title',
- timeClass: 'clean-time',
- symbol: 'vacuum',
- maximumNumberOfDays: 1
- },
- {
- 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
- }
- ]
- }
- }
- ]
- }
|