The MMM-DateOnly
module is a third party module for the MagicMirror universe.
This module displays the current date. This is module is derived from the standard calender-and-clock modules but with the advantage that you can only display the date (if you want to display the clock somewhere else on the screen or - as in my case - you have several clocks hanging around in the kitchen near the MagicMirror). The information will be updated every minute (might need revision, possibly more elegant if only during the change of the date...).
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: "MMM-DateOnly",
position: "top_left", // This can be any of the regions.
config: {
// The config property is optional.
// See 'Configuration options' for more information.
}
}
]
The following properties can be configured:
Option | Description |
---|---|
showWeek |
Turn off or on the Week section. Possible values: true or false Default value: false |
dateFormat |
Configure the date format as you like. Possible values: Docs Default value: "dddd, LL" |
not yet implemented