2018-04-09 04:15:13 +10:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/config.h"
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/input/input-manager.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
struct cmd_results *input_cmd_map_to_output(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "map_to_output", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
2018-09-24 09:56:52 +10:00
|
|
|
struct input_config *ic = config->handler_context.input_config;
|
|
|
|
if (!ic) {
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "No input device defined.");
|
2018-04-09 04:15:13 +10:00
|
|
|
}
|
|
|
|
|
2019-11-02 04:37:29 +11:00
|
|
|
ic->mapped_to = MAPPED_TO_OUTPUT;
|
2018-09-24 09:56:52 +10:00
|
|
|
ic->mapped_to_output = strdup(argv[0]);
|
2018-04-09 04:15:13 +10:00
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-04-09 04:15:13 +10:00
|
|
|
}
|