aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input/xkb_options.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-15 05:22:51 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-15 05:22:51 -0500
commit9eecbb5d8a988a0dded57ead1982dd0121071454 (patch)
tree3b02befcc78d300a0fd84b5962b323d015369398 /sway/commands/input/xkb_options.c
parentbasic configuration (diff)
downloadsway-9eecbb5d8a988a0dded57ead1982dd0121071454.tar.gz
sway-9eecbb5d8a988a0dded57ead1982dd0121071454.tar.zst
sway-9eecbb5d8a988a0dded57ead1982dd0121071454.zip
xkb config
Diffstat (limited to 'sway/commands/input/xkb_options.c')
-rw-r--r--sway/commands/input/xkb_options.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/sway/commands/input/xkb_options.c b/sway/commands/input/xkb_options.c
new file mode 100644
index 00000000..67eb5342
--- /dev/null
+++ b/sway/commands/input/xkb_options.c
@@ -0,0 +1,24 @@
1#define _XOPEN_SOURCE 700
2#include "sway/commands.h"
3#include "sway/input/input-manager.h"
4#include "log.h"
5
6struct cmd_results *input_cmd_xkb_options(int argc, char **argv) {
7 sway_log(L_DEBUG, "xkb options for device: %s", current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "xkb_options", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "xkb_options", "No input device defined.");
14 }
15 struct input_config *new_config =
16 new_input_config(current_input_config->identifier);
17
18 new_config->xkb_options = strdup(argv[0]);
19
20 sway_log(L_DEBUG, "apply-xkb_options for device: %s",
21 current_input_config->identifier);
22 input_cmd_apply(new_config);
23 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
24}