You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
848 B
33 lines
848 B
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/tree/view.h"
|
|
|
|
struct cmd_results *cmd_max_render_time(int argc, char **argv) {
|
|
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.");
|
|
}
|
|
}
|
|
|
|
struct sway_container *container = config->handler_context.container;
|
|
if (!container || !container->view) {
|
|
return cmd_results_new(CMD_INVALID,
|
|
"Only views can have a max_render_time");
|
|
}
|
|
|
|
struct sway_view *view = container->view;
|
|
view->max_render_time = max_render_time;
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|