1
0
Fork 0
forked from wry/wry

config: move rule match schema into schema crate

This commit is contained in:
kossLAN 2026-05-29 17:08:06 -04:00
parent f0e7bd31cb
commit d9261414c2
No known key found for this signature in database
3 changed files with 70 additions and 66 deletions

View file

@ -9,6 +9,7 @@ pub mod command;
pub mod input;
pub mod options;
pub mod output;
pub mod rules;
pub mod theme;
pub use animations::{AnimationCurveConfig, Animations};
@ -21,4 +22,5 @@ pub use options::{
pub use output::{
ConfigConnector, ConfigDrmDevice, ConnectorMatch, DrmDeviceMatch, Mode, Output, OutputMatch,
};
pub use rules::{ClientMatch, GenericMatch, MatchExactly, WindowMatch};
pub use theme::Theme;