Task attempt ec641adb-5bf7-43ae-91d5-39e9dd4caa3a - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-22 22:58:01 +01:00
parent 8f09d59210
commit 329069049f
6 changed files with 251 additions and 12 deletions

View File

@@ -9,6 +9,7 @@ pub struct Config {
pub theme: ThemeMode,
pub executor: ExecutorConfig,
pub disclaimer_acknowledged: bool,
pub onboarding_acknowledged: bool,
pub sound_alerts: bool,
pub push_notifications: bool,
pub editor: EditorConfig,
@@ -48,6 +49,7 @@ impl Default for Config {
theme: ThemeMode::System,
executor: ExecutorConfig::Claude,
disclaimer_acknowledged: false,
onboarding_acknowledged: false,
sound_alerts: true,
push_notifications: true,
editor: EditorConfig::default(),