From 651f197dd2c845dee3439bcb0365ff276678064b Mon Sep 17 00:00:00 2001 From: smartfrigde <37928912+smartfrigde@users.noreply.github.com> Date: Sun, 16 Jun 2024 15:28:11 +0200 Subject: [PATCH] fix: theme manager flag --- package.json | 1 - src/main.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 4a50bf1..1584342 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,6 @@ "watch": "tsc -w", "start": "pnpm run build && electron --trace-warnings ./ts-out/main.js", "startThemeManager": "pnpm run build && electron ./ts-out/main.js themes", - "startKeybindManager": "pnpm run build && electron ./ts-out/main.js keybinds", "startWayland": "pnpm run build && electron ./ts-out/main.js --ozone-platform-hint=auto --enable-features=WebRTCPipeWireCapturer,WaylandWindowDecorations --disable-gpu", "package": "pnpm run build && electron-builder", "packageQuick": "pnpm run build && electron-builder --dir", diff --git a/src/main.ts b/src/main.ts index 636f8a5..f24d8ca 100644 --- a/src/main.ts +++ b/src/main.ts @@ -44,7 +44,7 @@ async function args(): Promise { app.relaunch(); app.exit(); } else if (args == "themes") { - await app.whenReady().then(async () => { + void app.whenReady().then(async () => { await createTManagerWindow(); }); }