| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- 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
- }
- ]
- }
- }
- ]
- }
|