2017-12-16 18:14:24 +01:00
|
|
|
#include "sway/config.h"
|
2017-12-15 11:22:51 +01:00
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
struct cmd_results *input_cmd_xkb_model(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2017-12-16 18:40:58 +01:00
|
|
|
if ((error = checkarg(argc, "xkb_model", EXPECTED_EQUAL_TO, 1))) {
|
2017-12-15 11:22:51 +01:00
|
|
|
return error;
|
|
|
|
}
|
2018-09-24 01:56:52 +02:00
|
|
|
struct input_config *ic = config->handler_context.input_config;
|
|
|
|
if (!ic) {
|
2019-01-11 00:27:21 +01:00
|
|
|
return cmd_results_new(CMD_FAILURE, "No input device defined.");
|
2017-12-15 11:22:51 +01:00
|
|
|
}
|
|
|
|
|
2018-09-24 01:56:52 +02:00
|
|
|
ic->xkb_model = strdup(argv[0]);
|
2017-12-15 11:22:51 +01:00
|
|
|
|
2019-01-20 19:51:12 +01:00
|
|
|
sway_log(SWAY_DEBUG, "set-xkb_model for config: %s model: %s",
|
2018-09-24 01:56:52 +02:00
|
|
|
ic->identifier, ic->xkb_model);
|
2019-01-11 00:27:21 +01:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2017-12-15 11:22:51 +01:00
|
|
|
}
|