Calvin and Hobbes or Frazz comic strip for MM2. Changes comic every 30 minutes
CLONE REPO
cd ~ MagicMirror/modules
type: git clone https://github.com/cowboysdude/MMM-Comic
cd ~ MagicMirror/modules/MMM-Comic
type: npm install
To use this module, add it to the modules array in the config/config.js
file:
modules: [
{
module: 'MMM-Comic',
position: 'bottom_bar',
config: {
type: "calvin"
}
};
]
Option | Description |
---|---|
position |
The position of the module. Example: "middle_center", "lower_third", "bottom_left", "bottom_center", "bottom_right","bottom_bar", "fullscreen_above", "fullscreen_below" |
type |
The type of comic. Example: "Cavin" or "frazz" |
CHANGES YOU CAN MAKE
in custom.css you can change width and height of comic like this:
.MMM-Comic .photo {
height: 30%;
width: 30%;
}
You can change the % values to whatever your comfortable with.