diff options
Diffstat (limited to 'src/window.rs')
| -rw-r--r-- | src/window.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/window.rs b/src/window.rs index 68d1e3a0..ce62d07b 100644 --- a/src/window.rs +++ b/src/window.rs @@ -29,6 +29,9 @@ pub enum InitialConfigureState { /// `None` means that the window will pick its own width. width: Option<ColumnWidth>, + /// Whether the window should open full-width. + is_full_width: bool, + /// Output to open this window on. /// /// This can be `None` in cases like: @@ -52,6 +55,9 @@ pub struct ResolvedWindowRules { /// Output to open this window on. pub open_on_output: Option<String>, + + /// Whether the window should open full-width. + pub open_maximized: Option<bool>, } impl Unmapped { |
