summaryrefslogtreecommitdiffstats
path: root/sway/commands/output/enable.c
blob: 8e3314f8b0b49f3b34957fb1bfda6e020fba0441 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "sway/commands.h"
#include "sway/config.h"

struct cmd_results *output_cmd_enable(int argc, char **argv) {
	if (!config->handler_context.output_config) {
		return cmd_results_new(CMD_FAILURE, "output", "Missing output config");
	}
	config->handler_context.output_config->enabled = 1;

	config->handler_context.leftovers.argc = argc;
	config->handler_context.leftovers.argv = argv;
	return NULL;
}