refactor(config): BREAKING rename config option config_files to include_files

This commit is contained in:
CJ van den Berg 2025-01-08 12:53:07 +01:00
parent eaa7ad87b7
commit 1acc9b107e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
4 changed files with 10 additions and 10 deletions

View file

@ -92,7 +92,7 @@ fn init(allocator: Allocator) !*Self {
conf.input_mode = try allocator.dupe(u8, conf.input_mode);
conf.top_bar = try allocator.dupe(u8, conf.top_bar);
conf.bottom_bar = try allocator.dupe(u8, conf.bottom_bar);
conf.config_files = try allocator.dupe(u8, conf.config_files);
conf.include_files = try allocator.dupe(u8, conf.include_files);
if (build_options.gui) conf.enable_terminal_cursor = false;
const frame_rate: usize = @intCast(tp.env.get().num("frame-rate"));