diff --git a/assets/lang/en-US.json b/assets/lang/en-US.json
index fcfc7d1..5666b43 100644
--- a/assets/lang/en-US.json
+++ b/assets/lang/en-US.json
@@ -22,6 +22,8 @@
"settings-csp-desc": "ArmCord CSP is our system that manages loading custom content loading into the Discord app. Stuff like\n client mods and themes depend on it. Disable if you want to get rid of mods and custom styles.",
"settings-tray": "Minimize to tray",
"settings-tray-desc": "When disabled, ArmCord will close like any other window when closed, otherwise it'll sit back and relax\n in your system tray for later.",
+ "settings-startMinimized": "Start minimized",
+ "settings-startMinimized-desc": "ArmCord starts in background and remains out of your way.",
"settings-patches": "Automatic Patches",
"settings-patches-desk": "Fetches automatic patches that are distributed if release turns out to have bugs after release. Usually\n you don't have to keep this enabled, unless notified in support Discord.",
"settings-mobileMode": "Mobile mode",
diff --git a/src/content/setup.html b/src/content/setup.html
index 75048c5..bc945f3 100644
--- a/src/content/setup.html
+++ b/src/content/setup.html
@@ -124,6 +124,7 @@
inviteWebsocket: true,
mobileMode: false,
trayIcon: "default",
+ startMinimized: false,
performanceMode: "none"
});
setTimeout(() => window.armcordinternal.restart(), 5000);
@@ -155,6 +156,7 @@
automaticPatches: false,
performanceMode: "none",
alternativePaste: false,
+ startMinimized: false,
trayIcon: "default",
mods: options.mod,
inviteWebsocket: true
@@ -170,6 +172,7 @@
automaticPatches: false,
mobileMode: false,
mods: "none",
+ startMinimized: false,
alternativePaste: false,
performanceMode: "none",
trayIcon: "default",
diff --git a/src/settings/settings.html b/src/settings/settings.html
index fcb5755..c55d99f 100644
--- a/src/settings/settings.html
+++ b/src/settings/settings.html
@@ -52,6 +52,14 @@
+