From c1d1d2c90046238590d10830978afba1005f3b43 Mon Sep 17 00:00:00 2001 From: ferreo Date: Tue, 14 Jan 2025 21:00:40 +0000 Subject: [PATCH] Update system services list --- .github/release-nest-v3 | 2 +- falcond/debian/changelog | 2 +- falcond/src/config/config.zig | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/release-nest-v3 b/.github/release-nest-v3 index d8263ee..56a6051 100644 --- a/.github/release-nest-v3 +++ b/.github/release-nest-v3 @@ -1 +1 @@ -2 \ No newline at end of file +1 \ No newline at end of file diff --git a/falcond/debian/changelog b/falcond/debian/changelog index 43c46a7..26990a3 100644 --- a/falcond/debian/changelog +++ b/falcond/debian/changelog @@ -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 diff --git a/falcond/src/config/config.zig b/falcond/src/config/config.zig index f20c564..3223b00 100644 --- a/falcond/src/config/config.zig +++ b/falcond/src/config/config.zig @@ -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});