Implement "attach-mode"

This commit is contained in:
Leon Henrik Plickat
2020-08-17 23:13:16 +02:00
committed by Isaac Freund
parent 340bfbd7f1
commit 59d6432332
6 changed files with 84 additions and 2 deletions

View File

@ -30,6 +30,7 @@ const str_to_impl_fn = [_]struct {
name: []const u8,
impl: fn (*std.mem.Allocator, *Seat, []const []const u8, *?[]const u8) Error!void,
}{
.{ .name = "attach-mode", .impl = @import("command/attach_mode.zig").attach_mode },
.{ .name = "background-color", .impl = @import("command/config.zig").backgroundColor },
.{ .name = "border-color-focused", .impl = @import("command/config.zig").borderColorFocused },
.{ .name = "border-color-unfocused", .impl = @import("command/config.zig").borderColorUnfocused },