refactor: suppress first-run warnings

This commit is contained in:
zhom
2025-11-30 20:40:10 +04:00
parent e8026d817f
commit 0d1f1f1497
+8
View File
@@ -1107,6 +1107,14 @@ impl ProfileManager {
"user_pref(\"app.update.background.scheduling.enabled\", false);".to_string(),
// Suppress upgrade dialogs on startup
"user_pref(\"browser.startup.upgradeDialog.enabled\", false);".to_string(),
// Zen browser specific - disable welcome screen
"user_pref(\"zen.welcome-screen.seen\", true);".to_string(),
// Additional first-run suppressions
"user_pref(\"app.normandy.first_run\", false);".to_string(),
"user_pref(\"trailhead.firstrun.didSeeAboutWelcome\", true);".to_string(),
"user_pref(\"datareporting.policy.dataSubmissionPolicyBypassNotification\", true);"
.to_string(),
"user_pref(\"toolkit.telemetry.reportingpolicy.firstRun\", false);".to_string(),
]
}