2017-12-15 21:22:51 +11:00
|
|
|
#define _XOPEN_SOURCE 700
|
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 "sway/input/input-manager.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
struct cmd_results *input_cmd_xkb_variant(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2017-12-17 04:40:58 +11:00
|
|
|
if ((error = checkarg(argc, "xkb_variant", EXPECTED_EQUAL_TO, 1))) {
|
2017-12-15 21:22:51 +11:00
|
|
|
return error;
|
|
|
|
}
|
2018-01-21 03:32:07 +11:00
|
|
|
struct input_config *current_input_config =
|
|
|
|
config->handler_context.input_config;
|
2017-12-15 21:22:51 +11:00
|
|
|
if (!current_input_config) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "xkb_variant", "No input device defined.");
|
|
|
|
}
|
|
|
|
struct input_config *new_config =
|
|
|
|
new_input_config(current_input_config->identifier);
|
|
|
|
|
|
|
|
new_config->xkb_variant = strdup(argv[0]);
|
|
|
|
|
2018-01-06 08:32:51 +11:00
|
|
|
wlr_log(L_DEBUG, "apply-xkb_variant for device: %s variant: %s",
|
2017-12-19 02:44:25 +11:00
|
|
|
current_input_config->identifier, new_config->xkb_variant);
|
2017-12-17 04:14:24 +11:00
|
|
|
apply_input_config(new_config);
|
2017-12-15 21:22:51 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|