mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Implement config parser for workspace_layout
This commit is contained in:
parent
bdf2f4d1c2
commit
d76729af22
3 changed files with 23 additions and 0 deletions
21
sway/commands/workspace_layout.c
Normal file
21
sway/commands/workspace_layout.c
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue