From 072ad3d7e67300c1de25858b790670a46fb6c10e Mon Sep 17 00:00:00 2001 From: Kaydax Date: Sat, 28 Jan 2023 17:54:38 -0500 Subject: feat(settings): Add the ability to make the window transparent (#457) --- src/api/settings.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/api') diff --git a/src/api/settings.ts b/src/api/settings.ts index 4cdb24b..d20e964 100644 --- a/src/api/settings.ts +++ b/src/api/settings.ts @@ -32,6 +32,7 @@ export interface Settings { enableReactDevtools: boolean; themeLinks: string[]; frameless: boolean; + transparent: boolean; winCtrlQ: boolean; plugins: { [plugin: string]: { @@ -48,6 +49,7 @@ const DefaultSettings: Settings = { themeLinks: [], enableReactDevtools: false, frameless: false, + transparent: false, winCtrlQ: false, plugins: {} }; -- cgit