Skip to content

MagicMirror² module to display GitHub repository information

License

Notifications You must be signed in to change notification settings

trizome/MMM-GitHub-Monitor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MagicMirror² Module - GitHub Monitor

What?

This module enables you to display certain information about your favourite GitHub Repositories on your MagicMirror² Mirror.

Screenshot

How?

Installation

  1. Navigate to the /modules folder of you MagicMirror²
  2. Clone this repository using the following command: https://github.com/BrainConverter/MMM-GitHub-Monitor.git

Configuration

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

modules: [
	{
		module: 'MMM-GitHub-Monitor',
		position: 'top_left', // any possible region
		config: {
			repositories: [ // list of GitHub repositories to monitor
				{
					owner: 'MichMich', // reposistory owner
					name: 'MagicMirror', // repository name
				},
				{
					owner: 'BrainConverter',
					name: 'MMM-GitHub-Monitor',
				},
			],
			sort: true, // sort repositories alphabetically (default: true)
			updateInterval: 10000, // update interval in milliseconds (default: 10 min)
        },
	},
]

Update

Navigate to the folder of the this module in the /modules folder and get the latest version using the command git pull.

About

MagicMirror² module to display GitHub repository information

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.9%
  • CSS 2.1%