Add configurable startup view

This commit is contained in:
Yuri Karamian
2026-08-03 00:12:55 +02:00
parent 344728dbe8
commit 54e051ba02
8 changed files with 250 additions and 38 deletions
+3
View File
@@ -81,6 +81,8 @@ export interface CustomTheme {
colors: CustomThemeColors;
}
export type StartupView = "all" | "quickaccess" | "tasks" | "daily";
export interface AppConfig {
vaults: VaultConfig[];
active_vault: string | null;
@@ -130,6 +132,7 @@ export interface AppConfig {
show_tray_icon: boolean;
close_to_tray: boolean;
enable_wiki_links: boolean;
startup_view: StartupView;
restore_last_session: boolean;
sync_provider: string | null;
webdav_url: string | null;