2018-06-03 11:33:16 +10:00
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/config.h"
|
|
|
|
|
|
|
|
struct cmd_results *output_cmd_disable(int argc, char **argv) {
|
|
|
|
if (!config->handler_context.output_config) {
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "Missing output config");
|
2018-06-03 11:33:16 +10:00
|
|
|
}
|
|
|
|
config->handler_context.output_config->enabled = 0;
|
|
|
|
|
|
|
|
config->handler_context.leftovers.argc = argc;
|
|
|
|
config->handler_context.leftovers.argv = argv;
|
|
|
|
return NULL;
|
|
|
|
}
|