fix: theme manager flag

This commit is contained in:
smartfrigde 2024-06-16 15:28:11 +02:00
parent dc607615f6
commit 651f197dd2
2 changed files with 1 additions and 2 deletions

View File

@ -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",

View File

@ -44,7 +44,7 @@ async function args(): Promise<void> {
app.relaunch();
app.exit();
} else if (args == "themes") {
await app.whenReady().then(async () => {
void app.whenReady().then(async () => {
await createTManagerWindow();
});
}