From b6dfb4d0199f1e5aa89ee7a11ef6e813ed70b835 Mon Sep 17 00:00:00 2001 From: Alois Date: Tue, 21 Jul 2026 13:57:32 +0200 Subject: [PATCH] (feat): update chromium path --- apps/electron/src/main/main.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/electron/src/main/main.ts b/apps/electron/src/main/main.ts index 8fca9a4..a5843e0 100644 --- a/apps/electron/src/main/main.ts +++ b/apps/electron/src/main/main.ts @@ -30,6 +30,9 @@ const verbose = process.argv.includes("--verbose"); let mainWindow: BrowserWindow | null = null; let selectedScreenShareSourceId: string | null = null; +app.setName("tensamin"); +app.setPath("userData", join(app.getPath("appData"), "tensamin", "electron")); + if (verbose) { app.commandLine.appendSwitch("enable-logging", "stderr"); app.commandLine.appendSwitch("v", "1");