MagicMirror Module which creates a table with intractable unread GitHub notifications.
-
Clone this repository inside your MagicMirror's
modules
foldercd ~/MagicMirror/modules
git clone https://github.com/ByteExceptionM/MMM-GitHub-Notifications
.
You can add the following options to the config.js
file:
Option | Description |
---|---|
authToken |
The GitHub authentication token for the requests. Type: string Required: true |
updateInterval |
Interval of updating notifications. Type: int (milliseconds) Default: 60.000 milliseconds |
maxContentLength |
Maximum length of notification content. Type: int Default: 30 |
maxNotifications |
Maximum of shown notifications. Type: int Default: 5 Max: 20 |
Here is an example of an entry in config.js
{
module: "MMM-GitHub-Notifications",
position: "top_center",
config: {
authToken: "GITHUB AUTH TOKEN",
}
},