set default window size

This commit is contained in:
Stepan Bujnak
2024-12-11 03:35:54 +01:00
parent 5dcca19038
commit 181c888cde

View File

@ -1022,8 +1022,7 @@ keybind: Keybinds = .{},
@"window-colorspace": WindowColorspace = .srgb, @"window-colorspace": WindowColorspace = .srgb,
/// The initial window size. This size is in terminal grid cells by default. /// The initial window size. This size is in terminal grid cells by default.
/// Both values must be set to take effect. If only one value is set, it is /// Defaults to 100x34.
/// ignored.
/// ///
/// We don't currently support specifying a size in pixels but a future change /// We don't currently support specifying a size in pixels but a future change
/// can enable that. If this isn't specified, the app runtime will determine /// can enable that. If this isn't specified, the app runtime will determine
@ -1048,8 +1047,8 @@ keybind: Keybinds = .{},
/// window-decorations), then this will work as expected. /// window-decorations), then this will work as expected.
/// ///
/// Windows smaller than 10 wide by 4 high are not allowed. /// Windows smaller than 10 wide by 4 high are not allowed.
@"window-height": u32 = 0, @"window-height": u32 = 34,
@"window-width": u32 = 0, @"window-width": u32 = 100,
/// Whether to enable saving and restoring window state. Window state includes /// Whether to enable saving and restoring window state. Window state includes
/// their position, size, tabs, splits, etc. Some window state requires shell /// their position, size, tabs, splits, etc. Some window state requires shell