Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions settings.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2638,6 +2638,15 @@
If the final value of this field is true, then the window will open in a maximized column.
'';
};
open-maximized-to-edges = nullable types.bool // {
description = ''
Whether to open this window maximized to the screen edges.

If the final value of this field is null or false, then the window will not open maximized to edges.

If the final value of this field is true, then the window will open maximized to edges.
'';
};
open-fullscreen = nullable types.bool // {
description = ''
Whether to open this window in fullscreen.
Expand Down Expand Up @@ -3703,6 +3712,7 @@
(nullable leaf "open-on-output" cfg.open-on-output)
(nullable leaf "open-on-workspace" cfg.open-on-workspace)
(nullable leaf "open-maximized" cfg.open-maximized)
(nullable leaf "open-maximized-to-edges" cfg.open-maximized-to-edges)
(nullable leaf "open-fullscreen" cfg.open-fullscreen)
(nullable leaf "open-floating" cfg.open-floating)
(nullable leaf "open-focused" cfg.open-focused)
Expand Down