This post will guide you to install WhatATheme on your Jekyll site for AWS Domains
Published on August 09, 2023 by Robert McCue
how to setup magicmirror magicmirror2 raspberrypi raspberrypi 4 raspberry pi raspberry pi 4 WhatATheme
3 min READ
This post is to go over the install and configuration of MagicMirror2 running on two monitors with a Raspberry Pi 4.
sudo apt update
and sudo apt full-upgrade
ExecStopPost=killall /<PATH_TO_MAGICMIRROR>/node_modules/electron/dist/electron
Now the fun/pain begins as you make the MagicMirror2 custom to you. Here are some of the modules that I went with as well as some helpful links and notes that came up
Running MagicMirror2 and having it span two monitors is a separate project and is not covered here. I wanted to separate the modules from one instance to another, so dual monitors just became dual MagicMirror2 instances.
x
value in the ./js/electron.js
file with the pixel valuefunction createWindow() { let electronSwitchesDefaults = ["autoplay-policy", "no-user-gesture-required"]; app.commandLine.appendSwitch(...new Set(electronSwitchesDefaults, config.electronSwitches)); let electronOptionsDefaults = { width: 800, height: 600, x: 1920, y: 0, darkTheme: true, webPreferences: { contextIsolation: true, nodeIntegration: false, zoomFactor: config.zoom }, backgroundColor: "#000000" };
npm run start