aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/output/enable.c
blob: 0c98b481fe9391082fae56c445f1d84b91d305e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <strings.h>
#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, "Missing output config");
	}

	// The NOOP-1 output is a dummy output used when there's no outputs
	// connected. It should never be enabled.
	char *output_name = config->handler_context.output_config->name;
	if (strcasecmp(output_name, "NOOP-1") == 0) {
		return cmd_results_new(CMD_FAILURE,
				"Refusing to enable the no op output");
	}

	config->handler_context.output_config->enabled = 1;

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