Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.28 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.28 KB

MMM-Reddit-News-Ticker

This is a module for the MagicMirror².

Looks and acts like the horizontally scrolling newsticker from CNN. By pulling the top 50 submission titles from reddit.com/r/news, it avoids pulling clickbait article titles that don't impart any facts, leveraging the fact that redditors tend to downvote clickbait or sensationalist stories.

screenshot

Using the module

Requires python3.

You will need to get your own client ID and secret from reddit.

reddit api

To use this module, add the following configuration block to the modules array in the config/config.js file:

var config = {
  modules: [
    {
      module: 'MMM-Reddit-News-Ticker',
      position: 'bottom_bar'
      config: {
        client_id: 'XXXXXXXXXXXXXXXXXXXX'
        secret: 'XXXXXXXXXXXXXXXXXXXXX'
      },
    },
  ],
};

Configuration options

Option Description
client_id Required Your reddit API client id
secret Required Your reddit API secret