@Megawaldi it is fixed in the develop branch for next release
You can get the develop branch,
Currently we only release 4 times a year January ,April, July, October
See https://forum.magicmirror.builders/topic/14327/testing-new-fixes-or-solving-current-problems-with-next-release-code
@magicmikael if you do env
Do you see wayland_display in the list?
The script sets WAYLAND_DISPLAY if not already set
Here is the script , make sure to make it executable
chmod +x mm.sh
#!/bin/bash
cd ~/MagicMirror
if [ $(ps -ef | grep -v grep | grep -i -e xway -e labwc | wc -l) -ne 0 ]; then
# if WAYLAND_DISPLAYis set, use it, else set to -0
export WAYLAND_DISPLAY=${WAYLAND_DISPLAY:=wayland-0}
npm run start:wayland
else
DISPLAY=:0 npm run start:x11
fi