2023-04-09 20:49:50 +00:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0
|
|
|
|
* Vencord Desktop, a desktop app aiming to give you a snappier Discord Experience
|
|
|
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
|
|
|
*/
|
|
|
|
|
2023-04-09 03:04:49 +00:00
|
|
|
import type { Rectangle } from "electron";
|
|
|
|
|
2023-04-08 22:49:47 +00:00
|
|
|
export interface Settings {
|
|
|
|
maximized?: boolean;
|
|
|
|
minimized?: boolean;
|
2023-04-09 03:04:49 +00:00
|
|
|
windowBounds?: Rectangle;
|
2023-04-08 22:49:47 +00:00
|
|
|
discordBranch?: "stable" | "canary" | "ptb";
|
|
|
|
openLinksWithElectron?: boolean;
|
2023-04-09 00:26:31 +00:00
|
|
|
vencordDir?: string;
|
2023-04-09 03:04:49 +00:00
|
|
|
disableMinSize?: boolean;
|
2023-04-10 17:12:58 +00:00
|
|
|
tray?: boolean;
|
2023-04-09 03:57:45 +00:00
|
|
|
minimizeToTray?: boolean;
|
2023-04-08 22:49:47 +00:00
|
|
|
}
|