mirror of
https://codeberg.org/fairyglade/ly.git
synced 2026-08-09 15:19:13 +02:00
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:
parent
a70d301b6b
commit
0b99be00a9
3 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue