blob: 624f4056d506ef95a00a3916ec5a9ed9d0ee7cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "sway/commands.h"
#include "sway/config.h"
struct cmd_results *output_cmd_disable(int argc, char **argv) {
if (!config->handler_context.output_config) {
return cmd_results_new(CMD_FAILURE, "Missing output config");
}
config->handler_context.output_config->enabled = 0;
config->handler_context.leftovers.argc = argc;
config->handler_context.leftovers.argv = argv;
return NULL;
}
|