Update system services list
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 26s

This commit is contained in:
ferreo 2025-01-14 21:00:40 +00:00
parent 7b85e3752a
commit c1d1d2c900
3 changed files with 6 additions and 3 deletions

View File

@ -1 +1 @@
2
1

View File

@ -1,4 +1,4 @@
falcond (1.0.1-101pika3) pika; urgency=low
falcond (1.0.1-101pika4) pika; urgency=low
* Add config and profile autowatching + config for proton system files

View File

@ -27,6 +27,9 @@ const default_system_processes = [_][]const u8{
"SteamService.exe",
"UnityCrashHandler64.exe",
"start.exe",
"CrashReportClient.exe",
"Battle.net.exe",
"Agent.exe",
};
pub const Config = struct {
@ -82,7 +85,7 @@ pub const Config = struct {
try file.writer().print("enable_performance_mode = {}\n", .{self.enable_performance_mode});
try file.writer().print("scx_sched = {s}\n", .{@tagName(self.scx_sched)});
try file.writer().print("vcache_mode = {s}\n", .{@tagName(self.vcache_mode)});
try file.writer().print("system_processes = [\n", .{});
for (self.system_processes) |proc| {
try file.writer().print(" \"{s}\",\n", .{proc});