add option to disable splash screen

This commit is contained in:
Vendicated
2025-02-06 05:16:32 +01:00
parent 6e1913cafc
commit 9905592b24
3 changed files with 19 additions and 5 deletions

View File

@@ -60,11 +60,18 @@ const SettingsOptions: Record<string, Array<BooleanSetting | SettingsComponent>>
defaultValue: false,
disabled: () => Settings.store.customTitleBar ?? isWindows
},
{
key: "enableSplashScreen",
title: "Enable Splash Screen",
description: "Shows a small splash screen while Vesktop is loading",
defaultValue: true
},
{
key: "splashTheming",
title: "Splash theming",
description: "Adapt the splash window colors to your custom theme",
defaultValue: false
defaultValue: false,
disabled: () => Settings.store.enableSplashScreen === false
},
WindowsTransparencyControls
],