Hi.
I have been using crontab to start my MM for ages and it has always worked well. After updating it no longer seems to work. cron calls a script that has the following.
cd ~/MagicMirror
DISPLAY=0 npm start
Now, I have seen that it is suggest to use node --run start:X11 going forward and I have updated my start script with same but that does not seem to work either.
So my mm.sh now looks like,
cd ~/MagicMirror
DISPLAY=0 node --run start:X11
But as mentioned, this does not work.
Any ideas?