diff --git a/komorebi-client/src/lib.rs b/komorebi-client/src/lib.rs index 38da1615..02bfd96e 100644 --- a/komorebi-client/src/lib.rs +++ b/komorebi-client/src/lib.rs @@ -7,19 +7,26 @@ pub use komorebi::AspectRatio; pub use komorebi::BorderColours; pub use komorebi::Colour; pub use komorebi::CrossBoundaryBehaviour; +pub use komorebi::GridLayoutOptions; pub use komorebi::KomorebiTheme; +pub use komorebi::LayoutOptions; pub use komorebi::MonitorConfig; pub use komorebi::Notification; pub use komorebi::NotificationEvent; +pub use komorebi::Placement; pub use komorebi::PredefinedAspectRatio; pub use komorebi::Rgb; pub use komorebi::RuleDebug; +pub use komorebi::ScrollingLayoutOptions; pub use komorebi::StackbarConfig; pub use komorebi::StaticConfig; pub use komorebi::SubscribeOptions; pub use komorebi::TabsConfig; +pub use komorebi::ThemeOptions; pub use komorebi::VirtualDesktopNotification; +pub use komorebi::Wallpaper; pub use komorebi::WindowContainerBehaviour; +pub use komorebi::WindowHandlingBehaviour; pub use komorebi::WindowsApi; pub use komorebi::WorkspaceConfig; pub use komorebi::animation::PerAnimationPrefixConfig; diff --git a/komorebi/src/core/mod.rs b/komorebi/src/core/mod.rs index ffe841db..afd923be 100644 --- a/komorebi/src/core/mod.rs +++ b/komorebi/src/core/mod.rs @@ -23,7 +23,7 @@ pub use custom_layout::ColumnSplitWithCapacity; pub use custom_layout::ColumnWidth; pub use custom_layout::CustomLayout; pub use cycle_direction::CycleDirection; -pub use default_layout::DefaultLayout; +pub use default_layout::*; pub use direction::Direction; pub use layout::Layout; pub use operation_direction::OperationDirection;