Improve defaults, Add Rich Presence to first launch confi

This commit is contained in:
V
2023-06-22 15:55:04 +02:00
parent c31eb8154b
commit f58ed485a9
2 changed files with 19 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
--fg: black;
--fg-secondary: #313338;
--fg-semi-trans: rgb(0 0 0 / 0.2);
--link: #006ce7;
}
@media (prefers-color-scheme: dark) {
@@ -13,6 +14,7 @@
--fg: white;
--fg-secondary: #b5bac1;
--fg-semi-trans: rgb(255 255 255 / 0.2);
--link: #00a8fc;
}
}
@@ -52,6 +54,10 @@
margin: 1em 0 2em;
}
a {
color: var(--link);
}
form {
display: grid;
gap: 1em;
@@ -143,7 +149,15 @@
<h2>Start with System</h2>
<span>Automatically open Vencord Desktop when your computer starts</span>
</div>
<input type="checkbox" name="autoStart" checked />
<input type="checkbox" name="autoStart" />
</label>
<label>
<div>
<h2>Rich Presence</h2>
<span>Enable Rich presence (game activity) via arRPC</span>
</div>
<input type="checkbox" name="richPresence" checked />
</label>
<label>
@@ -163,7 +177,7 @@
</label>
</form>
<div id="buttons">
<button id="cancel">Cancel</button>
<button id="cancel">Quit</button>
<button id="submit">Submit</button>
</div>
</body>