summaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/output.c1
-rw-r--r--sway/commands/output/adaptive_sync.c22
2 files changed, 23 insertions, 0 deletions
diff --git a/sway/commands/output.c b/sway/commands/output.c
index 013f17b2..5186a2ba 100644
--- a/sway/commands/output.c
+++ b/sway/commands/output.c
@@ -7,6 +7,7 @@
7 7
8// must be in order for the bsearch 8// must be in order for the bsearch
9static struct cmd_handler output_handlers[] = { 9static struct cmd_handler output_handlers[] = {
10 { "adaptive_sync", output_cmd_adaptive_sync },
10 { "background", output_cmd_background }, 11 { "background", output_cmd_background },
11 { "bg", output_cmd_background }, 12 { "bg", output_cmd_background },
12 { "disable", output_cmd_disable }, 13 { "disable", output_cmd_disable },
diff --git a/sway/commands/output/adaptive_sync.c b/sway/commands/output/adaptive_sync.c
new file mode 100644
index 00000000..7382e2ee
--- /dev/null
+++ b/sway/commands/output/adaptive_sync.c
@@ -0,0 +1,22 @@
1#include "sway/commands.h"
2#include "sway/config.h"
3#include "util.h"
4
5struct cmd_results *output_cmd_adaptive_sync(int argc, char **argv) {
6 if (!config->handler_context.output_config) {
7 return cmd_results_new(CMD_FAILURE, "Missing output config");
8 }
9 if (argc == 0) {
10 return cmd_results_new(CMD_INVALID, "Missing adaptive_sync argument");
11 }
12
13 if (parse_boolean(argv[0], true)) {
14 config->handler_context.output_config->adaptive_sync = 1;
15 } else {
16 config->handler_context.output_config->adaptive_sync = 0;
17 }
18
19 config->handler_context.leftovers.argc = argc - 1;
20 config->handler_context.leftovers.argv = argv + 1;
21 return NULL;
22}