Read the statement by Michael Teeuw here.
Noob setup
-
Thankyou bravoOscar
I have replaced the New York Times one with the ABC news feed, i was missing the ‘,’ after the title string
Is this the correct code for multiple feeds ? can you see anything incorrect? the other two don’t seem to work
module: “newsfeed”,
position: “bottom_bar”,
config: {
feeds: [
{
title: “ABC News”,
url: “https://www.abc.net.au/news/feed/4535882/rss.xml”
},
{
title: “Weather Warnings for Australian Capital Territory.”,
url: “http://www.bom.gov.au/fwo/IDZ00061.warnings_land_nsw.xml”
},
{
tittle: “News.com”,
url: “https://www.news.com.au/content-feeds/latest-news-national/”
},
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true -
{ disabled: false, module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "News.com.au", url: "https://www.news.com.au/content-feeds/latest-news-national/" }, { title: "Weather Warnings for Australian Capital Territory.", url: "http://www.bom.gov.au/fwo/IDZ00061.warnings_land_nsw.xml" }, { title: "ABC News", url: "https://www.abc.net.au/news/feed/4535882/rss.xml" } ], showSourceTitle: true, showPublishDate: true, broadcastNewsFeeds: true, broadcastNewsUpdates: true } },
ABC is working, there are no actual data for weater right now.
The news.com format is wrong, because it dosent end on rss. -
@bravooscar go to one of the aus news links, and search for rss
u will get a page of different sources, select one and save its url
-
Thanks @BravoOscar
I only used the url: “https://www.news.com.au/content-feeds/latest-news-national/” as thats what was in the above post.
Ill have a search around for a rss one.
I noticed you put, disabled: false, as per below in your post, can you expand on what that does ? does that separate them ?
{
disabled: false,
module: “newsfeed”,
position: “bottom_bar”,
config: {thanks ?
-
@gr1dl0ck said in Noob setup:
I noticed you put, disabled: false, as per below in your post, can you expand on what that does
This is an easy way to enable or disable a module when MM launches, without say, commenting out the entire module’s entry or removing the entry from the config altogether.
So, for the module to load at MM launch
disabled: false,
For the module NOT to load at MM launch
disabled: true,