swayfx/sway/commands/seat/attach.c

29 lines
901 B
C
Raw Normal View History

2017-12-15 03:11:56 +11:00
#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;
}
2018-01-21 03:44:34 +11:00
struct seat_config *current_seat_config =
config->handler_context.seat_config;
2017-12-15 03:11:56 +11:00
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);
2017-12-17 04:14:24 +11:00
apply_seat_config(new_config);
2017-12-15 03:11:56 +11:00
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}