@shazglass - Ah. Okay, easy enough.
You’re missing the mm.sh script. I’m not sure how you had this registered in pm2 earlier, but we can fix it. We’ll use nano to create a new mm.sh file:
cd ~
nano mm.sh
This will give you a blank screen with the nano options at the bottom. Enter the following lines:
cd ~/MagicMirror
DISPLAY=:0 npm start
When you’re done, hit ctl+o to save the file and then ctl+x to exit nano. Then just like you did earlier, make your script executable by entering chmod +x mm.sh
Before we go any further, we need to test your script. From the command line, enter ./mm.sh
Your mirror should start after 30 seconds or so. Try this and report back with any errors and behaviors. Also, please use the markup commands when posting code and logs (follow this link for a quick tutorial).