2018-11-25 22:12:48 +11:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2017-12-17 04:14:24 +11:00
|
|
|
#include "sway/config.h"
|
2017-12-15 21:22:51 +11:00
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
struct cmd_results *input_cmd_xkb_layout(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2017-12-17 04:40:58 +11:00
|
|
|
if ((error = checkarg(argc, "xkb_layout", EXPECTED_EQUAL_TO, 1))) {
|
2017-12-15 21:22:51 +11:00
|
|
|
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.");
|
2017-12-15 21:22:51 +11:00
|
|
|
}
|
|
|
|
|
2018-09-24 09:56:52 +10:00
|
|
|
ic->xkb_layout = strdup(argv[0]);
|
2017-12-15 21:22:51 +11:00
|
|
|
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "set-xkb_layout for config: %s layout: %s",
|
2018-09-24 09:56:52 +10:00
|
|
|
ic->identifier, ic->xkb_layout);
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2017-12-15 21:22:51 +11:00
|
|
|
}
|