aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/VencordSettings/VencordTab.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx
index e1632b1..9f55d57 100644
--- a/src/components/VencordSettings/VencordTab.tsx
+++ b/src/components/VencordSettings/VencordTab.tsx
@@ -108,6 +108,13 @@ function VencordSettings() {
>
Disable the window frame
</Switch>
+ <Switch
+ value={settings.transparent}
+ onChange={(v: boolean) => settings.transparent = v}
+ note="Requires a full restart"
+ >
+ Enable window transparency
+ </Switch>
{navigator.platform.toLowerCase().startsWith("win") && (
<Switch
value={settings.winCtrlQ}