startz fix

This commit is contained in:
MeexReay 2025-03-22 01:55:12 +03:00
parent 1479a4dfbb
commit 149ce7072d

View File

@ -7,14 +7,14 @@ async function main(args) {
let ctx = getGraphics()
while (true) {
setInterval(() => {
ctx.fillStyle = "black"
ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height)
for (const win of window.mxwm_windows) {
ctx.drawImage(win.canvas, win.x, win.y);
}
}
}, 1000 / 60)
disableGraphics()
}