Implement config parser for workspace_layout

This commit is contained in:
Brian Ashworth 2018-05-28 22:55:06 -04:00
parent bdf2f4d1c2
commit d76729af22
3 changed files with 23 additions and 0 deletions

View File

@ -169,6 +169,7 @@ static struct cmd_handler config_handlers[] = {
{ "default_orientation", cmd_default_orientation },
{ "set", cmd_set },
{ "swaybg_command", cmd_swaybg_command },
{ "workspace_layout", cmd_workspace_layout },
};
/* Runtime-only commands. Keep alphabetized */

View File

@ -0,0 +1,21 @@
#include <string.h>
#include <strings.h>
#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 <default|stacking|tabbed>'");
}
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}

View File

@ -69,6 +69,7 @@ sway_sources = files(
'commands/title_format.c',
'commands/unmark.c',
'commands/workspace.c',
'commands/workspace_layout.c',
'commands/ws_auto_back_and_forth.c',
'commands/bar/activate_button.c',