41 lines
1 KiB
TypeScript
41 lines
1 KiB
TypeScript
/*
|
|
* SPDX-License-Identifier: GPL-3.0
|
|
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
|
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
|
*/
|
|
|
|
import type { Rectangle } from "electron";
|
|
|
|
export interface Settings {
|
|
discordBranch?: "stable" | "canary" | "ptb";
|
|
vencordDir?: string;
|
|
transparencyOption?: "none" | "mica" | "tabbed" | "acrylic";
|
|
tray?: boolean;
|
|
minimizeToTray?: boolean;
|
|
openLinksWithElectron?: boolean;
|
|
staticTitle?: boolean;
|
|
enableMenu?: boolean;
|
|
disableSmoothScroll?: boolean;
|
|
hardwareAcceleration?: boolean;
|
|
arRPC?: boolean;
|
|
appBadge?: boolean;
|
|
discordWindowsTitleBar?: boolean;
|
|
disableMinSize?: boolean;
|
|
|
|
checkUpdates?: boolean;
|
|
|
|
splashTheming?: boolean;
|
|
splashColor?: string;
|
|
splashBackground?: string;
|
|
}
|
|
|
|
export interface State {
|
|
maximized?: boolean;
|
|
minimized?: boolean;
|
|
windowBounds?: Rectangle;
|
|
|
|
skippedUpdate?: string;
|
|
firstLaunch?: boolean;
|
|
|
|
steamOSLayoutVersion?: number;
|
|
}
|