blob: 2d3cebe30a3f7286a0d12d31b0d9b39d31cbc881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <strings.h>
#include "sway/commands.h"
#include "sway/config.h"
struct cmd_results *output_cmd_max_render_time(int argc, char **argv) {
if (!config->handler_context.output_config) {
return cmd_results_new(CMD_FAILURE, "Missing output config");
}
if (!argc) {
return cmd_results_new(CMD_INVALID, "Missing max render time argument.");
}
int max_render_time;
if (!strcmp(*argv, "off")) {
max_render_time = 0;
} else {
char *end;
max_render_time = strtol(*argv, &end, 10);
if (*end || max_render_time <= 0) {
return cmd_results_new(CMD_INVALID, "Invalid max render time.");
}
}
config->handler_context.output_config->max_render_time = max_render_time;
config->handler_context.leftovers.argc = argc - 1;
config->handler_context.leftovers.argv = argv + 1;
return NULL;
}
|