diff --git a/komorebi/src/workspace.rs b/komorebi/src/workspace.rs index 6dea8247..6f5d64dc 100644 --- a/komorebi/src/workspace.rs +++ b/komorebi/src/workspace.rs @@ -131,6 +131,8 @@ impl Workspace { } self.set_layout_rules(all_rules); + + self.tile = true; } if let Some(layout_rules) = &config.custom_layout_rules { @@ -139,6 +141,8 @@ impl Workspace { let rule = CustomLayout::from_path(pathbuf)?; rules.push((*count, Layout::Custom(rule))); } + + self.tile = true; } Ok(())