From 140cc18a31dae9e3358f0a39376f6925a4471462 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Wed, 12 Nov 2025 07:39:03 +1100 Subject: [PATCH] fix: disable GPU acceleration on Linux to avoid graphics driver issues --- src/main/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/index.ts b/src/main/index.ts index d464fc5..6d2a839 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -1,6 +1,11 @@ import { app } from 'electron'; import { MainApp } from './MainApp'; +// Disable GPU acceleration on Linux to avoid graphics driver issues +if (process.platform === 'linux') { + app.disableHardwareAcceleration(); +} + const mainApp = new MainApp(); app.whenReady()