aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input
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
parentbasic configuration (diff)
downloadsway-9eecbb5d8a988a0dded57ead1982dd0121071454.tar.gz
sway-9eecbb5d8a988a0dded57ead1982dd0121071454.tar.zst
sway-9eecbb5d8a988a0dded57ead1982dd0121071454.zip
xkb config
Diffstat (limited to 'sway/commands/input')
-rw-r--r--sway/commands/input/xkb_layout.c24
-rw-r--r--sway/commands/input/xkb_model.c24
-rw-r--r--sway/commands/input/xkb_options.c24
-rw-r--r--sway/commands/input/xkb_rules.c24
-rw-r--r--sway/commands/input/xkb_variant.c24
5 files changed, 120 insertions, 0 deletions
diff --git a/sway/commands/input/xkb_layout.c b/sway/commands/input/xkb_layout.c
new file mode 100644
index 00000000..9a9ce044
--- /dev/null
+++ b/sway/commands/input/xkb_layout.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_layout(int argc, char **argv) {
7 sway_log(L_DEBUG, "xkb layout for device: %s", current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "xkb_layout", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "xkb_layout", "No input device defined.");
14 }
15 struct input_config *new_config =
16 new_input_config(current_input_config->identifier);
17
18 new_config->xkb_layout = strdup(argv[0]);
19
20 sway_log(L_DEBUG, "apply-xkb_layout for device: %s",
21 current_input_config->identifier);
22 input_cmd_apply(new_config);
23 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
24}
diff --git a/sway/commands/input/xkb_model.c b/sway/commands/input/xkb_model.c
new file mode 100644
index 00000000..14a50ffb
--- /dev/null
+++ b/sway/commands/input/xkb_model.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_model(int argc, char **argv) {
7 sway_log(L_DEBUG, "xkb model for device: %s", current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "xkb_model", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "xkb_model", "No input device defined.");
14 }
15 struct input_config *new_config =
16 new_input_config(current_input_config->identifier);
17
18 new_config->xkb_model = strdup(argv[0]);
19
20 sway_log(L_DEBUG, "apply-xkb_model for device: %s",
21 current_input_config->identifier);
22 input_cmd_apply(new_config);
23 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
24}
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}
diff --git a/sway/commands/input/xkb_rules.c b/sway/commands/input/xkb_rules.c
new file mode 100644
index 00000000..3eda0bdd
--- /dev/null
+++ b/sway/commands/input/xkb_rules.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_rules(int argc, char **argv) {
7 sway_log(L_DEBUG, "xkb rules for device: %s", current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "xkb_rules", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "xkb_rules", "No input device defined.");
14 }
15 struct input_config *new_config =
16 new_input_config(current_input_config->identifier);
17
18 new_config->xkb_rules = strdup(argv[0]);
19
20 sway_log(L_DEBUG, "apply-xkb_rules for device: %s",
21 current_input_config->identifier);
22 input_cmd_apply(new_config);
23 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
24}
diff --git a/sway/commands/input/xkb_variant.c b/sway/commands/input/xkb_variant.c
new file mode 100644
index 00000000..c7f93ad4
--- /dev/null
+++ b/sway/commands/input/xkb_variant.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_variant(int argc, char **argv) {
7 sway_log(L_DEBUG, "xkb variant for device: %s", current_input_config->identifier);
8 struct cmd_results *error = NULL;
9 if ((error = checkarg(argc, "xkb_variant", EXPECTED_AT_LEAST, 1))) {
10 return error;
11 }
12 if (!current_input_config) {
13 return cmd_results_new(CMD_FAILURE, "xkb_variant", "No input device defined.");
14 }
15 struct input_config *new_config =
16 new_input_config(current_input_config->identifier);
17
18 new_config->xkb_variant = strdup(argv[0]);
19
20 sway_log(L_DEBUG, "apply-xkb_variant for device: %s",
21 current_input_config->identifier);
22 input_cmd_apply(new_config);
23 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
24}