mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
fix: theme manager flag
This commit is contained in:
parent
dc607615f6
commit
651f197dd2
2 changed files with 1 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue