summaryrefslogtreecommitdiffstats
path: root/sway/tree/output.c
blob: af17b856192736d7e6f8a9df1ca7b6d675cfe06d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <strings.h>
#include "sway/tree/container.h"
#include "sway/tree/layout.h"
#include "sway/output.h"
#include "log.h"

struct sway_container *output_by_name(const char *name) {
	for (int i = 0; i < root_container.children->length; ++i) {
		struct sway_container *output = root_container.children->items[i];
		if (strcasecmp(output->name, name) == 0){
			return output;
		}
	}
	return NULL;
}