MMM-Sonarr is a MagicMirror² module that displays upcoming shows and recently downloaded episodes from your Sonarr instance.
- Shows upcoming episodes from your Sonarr calendar
- Displays recently downloaded episodes
- Configurable update interval and display limits
-
Navigate to your MagicMirror's
modules
directory:cd ~/MagicMirror/modules
-
Clone this repository:
git clone https://github.com/gravitykillseverything/MMM-Sonarr.git
Add the following configuration to your config/config.js
file:
{
module: "MMM-Sonarr",
position: "top_right",
config: {
apiKey: "YOUR_SONARR_API_KEY",
baseUrl: "http://localhost:8989",
upcomingLimit: 5,
historyLimit: 5,
updateInterval: 1 * 60 * 1000, // 1 minute
}
},
Option | Description |
---|---|
apiKey |
Your Sonarr API key |
baseUrl |
The base URL of your Sonarr instance |
upcomingLimit |
Number of upcoming shows to display |
historyLimit |
Number of recently downloaded episodes to display |
updateInterval |
How often to update the data (in milliseconds) |
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License.