From d76729af22c9c87e7827d681b733e17fc9abfbb3 Mon Sep 17 00:00:00 2001 From: Brian Ashworth Date: Mon, 28 May 2018 22:55:06 -0400 Subject: Implement config parser for workspace_layout --- sway/commands/workspace_layout.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sway/commands/workspace_layout.c (limited to 'sway/commands') diff --git a/sway/commands/workspace_layout.c b/sway/commands/workspace_layout.c new file mode 100644 index 00000000..ed4c0ee0 --- /dev/null +++ b/sway/commands/workspace_layout.c @@ -0,0 +1,21 @@ +#include +#include +#include "sway/commands.h" + +struct cmd_results *cmd_workspace_layout(int argc, char **argv) { + struct cmd_results *error = NULL; + if ((error = checkarg(argc, "workspace_layout", EXPECTED_EQUAL_TO, 1))) { + return error; + } + if (strcasecmp(argv[0], "default") == 0) { + config->default_layout = L_NONE; + } else if (strcasecmp(argv[0], "stacking") == 0) { + config->default_layout = L_STACKED; + } else if (strcasecmp(argv[0], "tabbed") == 0) { + config->default_layout = L_TABBED; + } else { + return cmd_results_new(CMD_INVALID, "workspace_layout", + "Expected 'workspace_layout '"); + } + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} -- cgit v1.2.3