refactor(custom): move custom.zig into ly-core

Moves custom.zig into ly-core, as that's a better place for it.
It also means the parsers can access it directly.
This commit is contained in:
Titanium Brain 2026-06-18 19:17:31 +01:00
commit 0b99be00a9
3 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ const Config = @import("Config.zig");
const Lang = @import("Lang.zig");
const OldSave = @import("OldSave.zig");
const SavedUsers = @import("SavedUsers.zig");
const custom = @import("custom.zig");
const custom = ly_core.custom;
const color_properties = [_][]const u8{
"bg",

View file

@ -24,6 +24,7 @@ const IniParser = ly_core.IniParser;
const LuaParser = ly_core.LuaParser;
const ini = ly_core.ini;
const Ini = ini.Ini;
const custom = ly_core.custom;
const Cascade = @import("animations/Cascade.zig");
const ColorMix = @import("animations/ColorMix.zig");
@ -41,7 +42,6 @@ const Lang = @import("config/Lang.zig");
const migrator = @import("config/migrator.zig");
const OldSave = @import("config/OldSave.zig");
const SavedUsers = @import("config/SavedUsers.zig");
const custom = @import("config/custom.zig");
const DisplayServer = @import("enums.zig").DisplayServer;
const Environment = @import("Environment.zig");
const Entry = Environment.Entry;