command: add view_padding option
This commit is contained in:
parent
4f029aa5c7
commit
c2d32a44c3
@ -175,6 +175,8 @@ border_color_focused (RGB/RGBA hex code)
|
|||||||
border_color_unfocused (RGB/RGBA hex code)
|
border_color_unfocused (RGB/RGBA hex code)
|
||||||
.IP \(bu
|
.IP \(bu
|
||||||
outer_padding (non-negative integer)
|
outer_padding (non-negative integer)
|
||||||
|
.IP \(bu
|
||||||
|
view_padding (non-negative integer)
|
||||||
|
|
||||||
.SH EXAMPLES
|
.SH EXAMPLES
|
||||||
|
|
||||||
|
@ -21,11 +21,12 @@ const std = @import("std");
|
|||||||
const Error = @import("../command.zig").Error;
|
const Error = @import("../command.zig").Error;
|
||||||
const Seat = @import("../Seat.zig");
|
const Seat = @import("../Seat.zig");
|
||||||
|
|
||||||
pub const Option = enum {
|
const Option = enum {
|
||||||
border_width,
|
border_width,
|
||||||
border_color_focused,
|
border_color_focused,
|
||||||
border_color_unfocused,
|
border_color_unfocused,
|
||||||
outer_padding,
|
outer_padding,
|
||||||
|
view_padding,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Set option to a specified value.
|
/// Set option to a specified value.
|
||||||
@ -40,7 +41,6 @@ pub fn setOption(
|
|||||||
|
|
||||||
const config = &seat.input_manager.server.config;
|
const config = &seat.input_manager.server.config;
|
||||||
|
|
||||||
// Parse option and value.
|
|
||||||
const option = std.meta.stringToEnum(Option, args[1]) orelse return Error.UnknownOption;
|
const option = std.meta.stringToEnum(Option, args[1]) orelse return Error.UnknownOption;
|
||||||
|
|
||||||
// Assign value to option.
|
// Assign value to option.
|
||||||
@ -49,6 +49,7 @@ pub fn setOption(
|
|||||||
.border_color_focused => config.border_color_focused = try parseRgba(args[2]),
|
.border_color_focused => config.border_color_focused = try parseRgba(args[2]),
|
||||||
.border_color_unfocused => config.border_color_unfocused = try parseRgba(args[2]),
|
.border_color_unfocused => config.border_color_unfocused = try parseRgba(args[2]),
|
||||||
.outer_padding => config.outer_padding = try std.fmt.parseInt(u32, args[2], 10),
|
.outer_padding => config.outer_padding = try std.fmt.parseInt(u32, args[2], 10),
|
||||||
|
.view_padding => config.view_padding = try std.fmt.parseInt(u32, args[2], 10),
|
||||||
}
|
}
|
||||||
|
|
||||||
// 'Refresh' focused output to display the desired changes.
|
// 'Refresh' focused output to display the desired changes.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user