From 1a6a8c7252c226bf0e73a20d0701a819a5e15f98 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sun, 8 Dec 2024 21:18:03 +1100 Subject: [PATCH] Add setting store item for window style --- src/store/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/store/index.ts b/src/store/index.ts index f0cabae9..0f56883d 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -16,4 +16,10 @@ export type DesktopSettings = { * in the yaml config. */ installState?: 'started' | 'installed' | 'upgraded'; + /** + * Controls whether to use a custom window on linux/win32 + * - `custom`: Modern, theme-reactive, feels like an integral part of the UI + * - `default`: Impersonal, static, plain - default window title bar + */ + windowStyle?: 'custom' | 'default'; };