1
0
Fork 0
forked from wry/wry

config: move output schema into schema crate

This commit is contained in:
kossLAN 2026-05-29 17:04:27 -04:00
parent e94d8fec1f
commit fb65585bfa
No known key found for this signature in database
4 changed files with 140 additions and 93 deletions

View file

@ -6,6 +6,7 @@
pub mod animations;
pub mod options;
pub mod output;
pub mod theme;
pub use animations::{AnimationCurveConfig, Animations};
@ -13,4 +14,7 @@ pub use options::{
ColorManagement, Float, FocusHistory, Libei, RepeatRate, SimpleIm, Tearing, UiDrag, Vrr,
Xwayland,
};
pub use output::{
ConfigConnector, ConfigDrmDevice, ConnectorMatch, DrmDeviceMatch, Mode, Output, OutputMatch,
};
pub use theme::Theme;