@@ -63,7 +63,7 @@ export class StatusBar implements vscode.Disposable {
6363
6464 // Update notification status bar
6565 const config = vscode . workspace . getConfiguration ( 'simpleCodingTimeTracker' ) ;
66- const notificationsEnabled = config . get ( 'health.enableNotifications' , true ) ;
66+ const notificationsEnabled = config . get ( 'health.enableNotifications' , false ) ;
6767 const notificationIcon = notificationsEnabled ? '🔔' : '🔕' ;
6868 this . notificationItem . text = notificationIcon ;
6969 this . notificationItem . tooltip = `Health Notifications: ${ notificationsEnabled ? 'ON' : 'OFF' } (Click to toggle)` ;
@@ -84,7 +84,7 @@ export class StatusBar implements vscode.Disposable {
8484 const currentProject = this . timeTracker . getCurrentProject ( ) ;
8585
8686 const config = vscode . workspace . getConfiguration ( 'simpleCodingTimeTracker' ) ;
87- const notificationsEnabled = config . get ( 'health.enableNotifications' , true ) ;
87+ const notificationsEnabled = config . get ( 'health.enableNotifications' , false ) ;
8888 const notificationStatus = notificationsEnabled ? 'ON' : 'OFF' ;
8989
9090 return `${ isActive ? 'Active' : 'Paused' } - Coding Time
@@ -102,7 +102,7 @@ Click to save session and show summary`;
102102 // Toggle notifications method
103103 private async toggleNotifications ( ) : Promise < void > {
104104 const config = vscode . workspace . getConfiguration ( 'simpleCodingTimeTracker' ) ;
105- const currentEnabled = config . get ( 'health.enableNotifications' , true ) ;
105+ const currentEnabled = config . get ( 'health.enableNotifications' , false ) ;
106106
107107 // Toggle the setting
108108 await config . update ( 'health.enableNotifications' , ! currentEnabled , vscode . ConfigurationTarget . Global ) ;
0 commit comments