2016-09-02 12:39:08 +10:00
|
|
|
#include <string.h>
|
2016-09-03 05:11:48 +10:00
|
|
|
#include "sway/commands.h"
|
2016-09-02 12:39:08 +10:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|