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()