mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Implement config parser for workspace_layout
This commit is contained in:
parent
bdf2f4d1c2
commit
d76729af22
@ -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 */
|
||||
|
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);
|
||||
}
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user