Read the statement by Michael Teeuw here.
London tube status
-
/* Magic Mirror Config Sample
*- By Michael Teeuw http://michaelteeuw.nl
- MIT Licensed.
*/
var config = {
port: 8080,language: 'en', timeFormat: 24, units: 'imperial', modules: [ { module: 'alert', }, { module: 'MMM-Tube-Status', position: 'bottom_bar', header: 'Tube Status', config: { show_all: true } }, { module: 'MMM-Remote-Control' },
// {
// module: ‘MMM-Modulecheduler’,
// config: {
// notification_schedule: [
// //turn the moniter on at 6:30 am daily
// {notification: ‘REMOTE_ACTION’, schedule: '30 6 * * * ', payload: {action: “MONITORON”}},
// //turn off the monitor at 22:30 daily
// {notification: ‘REMOTE_ACTION’ schedule: ‘30 22 * * *’, payload: [action: “MONITOROFF”}},
// //restart magicmirror 2am sundays
// {notification: ‘REMOTE_ACTION’, schedule: ‘0 2 * * SUN’, payload: [action: “RESTART”}}
// ]
// }
// },{ module: 'clock', position: 'top_left' }, { module: 'MMM-Wunderlist', position: 'top_left', header: 'To-Do', config: { accessToken: '', clientID: '', lists: ["Work", "Family"] } }, { module: 'calendar', header: 'Jennifer Calendar', position: 'middle_center', config: { calendars: [ { symbol: 'calendar-check-o', url: '' }, { url: '', }, { url: 'webcal://www.calendarlabs.com/templates/ical/UK-Holidays.ics' }, ] } }, { module: 'calendar', header: 'Sarika Calendar', position: 'middle_center', config: { calendars: [ { symbol: 'diamond', url: '' }, ] } }, { module: 'compliments', position: 'top_bar' }, { module: 'currentweather', position: 'top_right', config: { location: 'City of Westminster', locationID: '', //ID from http://www.openweathermap.org appid: '' } }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'City of Westminster', locationID: '', //ID from http://www.openweathermap.org appid: '' } }, { module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "BBC Top Stories", url: "http://feeds.bbci.co.uk/news/rss.xml" } ], showSourceTitle: true, showPublishDate: true } }, ]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== ‘undefined’) {module.exports = config;} -
@soqueen sorry I thought the site supported PMs, my bad. Looking at the config you have you have the tube status set to show across the bottom of the screen:
position: 'bottom_bar',
If you move it to show in something like
'bottom_center'
then it will restrict the width of the module. Check out the MM2 Read Me for the valid location settings. Hopefully this will correct the issue you are seeing, let me know if it remains a problem. -
@nigel-daniels You are SO right! That works perfectly! Thank you!