A MagicMirror² module that shows displays recent activity from a set of Letterboxd users.
- Clone repo:
cd MagicMirror/modules/
git clone https://github.com/tristanburke/MMM-Letterboxd
- Install dependencies:
cd MMM-Letterboxd/
npm install
- Add the module to the ../MagicMirror/config/config.js, example:
{
module: "MMM-Letterboxd",
position: "top_right",
header: "Letterboxd",
config: {
maxItems: 4,
usernames: ["smittyW1"],
fetchInternval: 300000, // 5 minutes
scale: "small"
}
},
Option | Description |
---|---|
maxItems |
How many reviews to display. Default value: 4 |
usernames |
Which users to retrieve letterboxd review from. Default value: [] |
fetchInternval |
How often the module pulls data. Default value: 300000 == 5 minutes |
scale . |
Either "small" or "medium" - the two display options. Default value: small |