summaryrefslogtreecommitdiff
path: root/magicmirror/config/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'magicmirror/config/config.js')
-rw-r--r--magicmirror/config/config.js73
1 files changed, 73 insertions, 0 deletions
diff --git a/magicmirror/config/config.js b/magicmirror/config/config.js
new file mode 100644
index 0000000..3896e1f
--- /dev/null
+++ b/magicmirror/config/config.js
@@ -0,0 +1,73 @@
+var config = {
+ address: "0.0.0.0", // any
+ port: 8080,
+ ipWhitelist: [], // any
+ language: "de",
+ timeFormat: 24,
+ units: "metric",
+ serverOnly: true,
+ modules: [
+ {
+ module: "MMM-Trello",
+ position: "bottom_bar",
+ config: {
+ api_key: "",
+ token: "",
+ list: "",
+ reloadInterval: 1000 * 60 * 60,
+ updateInterval: 1000 * 60 * 5,
+ animationSpeed: 0,
+ showTitle: true,
+ showDescription: true,
+ isCompleted: false,
+ showLineBreaks: true,
+ showDueDate: false,
+ showChecklists: false,
+ showChecklistTitle: false,
+ wholeList: false,
+ },
+ },
+ {
+ module: "MMM-ImagesPhotos",
+ position: "fullscreen_below",
+ config: {
+ opacity: 1.0,
+ animationSpeed: 0,
+ updateInterval: 60000,
+ }
+ },
+ {
+ module: "MMM-DateOnly",
+ position: "top_right",
+ config: {
+ showWeek: false,
+ dateFormat: "dddd, LL",
+ }
+ },
+ {
+ module: "MMM-PublicTransportHafas",
+ position: "top_right",
+ config: {
+ stationID: "",
+ stationName: "",
+ updatesEvery: 60 * 15,
+ direction: "",
+ interval: 1000 * 60 * 15,
+ timeToStation: 0,
+ timeInFuture: 180,
+ showColoredLineSymbols: false,
+ useColorForRealtimeInfo: false,
+ showAbsoluteTime: true,
+ marqueeLongDirections: false,
+ showTableHeaders: false,
+ maxReachableDepartures: 2,
+ maxUnreachableDepartures: 0,
+ fadeReachableDepartures: false,
+ },
+ },
+ ]
+
+};
+
+/*************** DO NOT EDIT THE LINE BELOW ***************/
+if (typeof module !== "undefined") {module.exports = config;}