From 7d968f5f084dea8bb04bc4e795e95790f35f33be Mon Sep 17 00:00:00 2001 From: Carsten Braun Date: Tue, 16 May 2023 12:24:06 +0200 Subject: [PATCH] Do not set default value. --- app/AppConfig.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index cfb6fa26..76780195 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -69,7 +69,6 @@ public class AppConfig { config = new Dictionary(); config["performance_mode"] = 0; - config["auto_apply_power_plan"] = 1; string jsonString = JsonSerializer.Serialize(config); File.WriteAllText(configFile, jsonString); }