mirror of
https://github.com/swaywm/sway.git
synced 2025-11-22 06:59:48 -05:00
basic configuration
This commit is contained in:
parent
c173d30b92
commit
92fef27eaa
15 changed files with 543 additions and 174 deletions
26
sway/commands/seat/attach.c
Normal file
26
sway/commands/seat/attach.c
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#define _XOPEN_SOURCE 700
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include "sway/input/input-manager.h"
|
||||
#include "sway/commands.h"
|
||||
#include "sway/config.h"
|
||||
#include "log.h"
|
||||
#include "stringop.h"
|
||||
|
||||
struct cmd_results *seat_cmd_attach(int argc, char **argv) {
|
||||
struct cmd_results *error = NULL;
|
||||
if ((error = checkarg(argc, "attach", EXPECTED_AT_LEAST, 1))) {
|
||||
return error;
|
||||
}
|
||||
if (!current_seat_config) {
|
||||
return cmd_results_new(CMD_FAILURE, "attach", "No seat defined");
|
||||
}
|
||||
|
||||
struct seat_config *new_config = new_seat_config(current_seat_config->name);
|
||||
struct seat_attachment_config *new_attachment = seat_attachment_config_new();
|
||||
new_attachment->identifier = strdup(argv[0]);
|
||||
list_add(new_config->attachments, new_attachment);
|
||||
|
||||
seat_cmd_apply(new_config);
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue