swayfx/sway/commands/input/xkb_model.c

22 lines
617 B
C
Raw Normal View History

#define _POSIX_C_SOURCE 200809L
2017-12-16 12:14:24 -05:00
#include "sway/config.h"
2017-12-15 05:22:51 -05: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 12:40:58 -05:00
if ((error = checkarg(argc, "xkb_model", EXPECTED_EQUAL_TO, 1))) {
2017-12-15 05:22:51 -05:00
return error;
}
2018-09-23 19:56:52 -04:00
struct input_config *ic = config->handler_context.input_config;
if (!ic) {
return cmd_results_new(CMD_FAILURE, "No input device defined.");
2017-12-15 05:22:51 -05:00
}
2018-09-23 19:56:52 -04:00
ic->xkb_model = strdup(argv[0]);
2017-12-15 05:22:51 -05:00
sway_log(SWAY_DEBUG, "set-xkb_model for config: %s model: %s",
2018-09-23 19:56:52 -04:00
ic->identifier, ic->xkb_model);
return cmd_results_new(CMD_SUCCESS, NULL);
2017-12-15 05:22:51 -05:00
}