aboutsummaryrefslogtreecommitdiffstats
path: root/sway/main.c
blob: af8c6ed13e041b2670d143cef428c875a4f27086 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <wlc/wlc.h>
#include "layout.h"
#include "config.h"
#include "log.h"
#include "handlers.h"

struct sway_config *config;

int main(int argc, char **argv) {
	init_log(L_DEBUG); // TODO: Control this with command line arg
	init_layout();

	static struct wlc_interface interface = {
		.output = {
			.created = handle_output_created,
			.destroyed = handle_output_destroyed,
			.resolution = handle_output_resolution_change
		},
		.view = {
			.created = handle_view_created,
			.destroyed = handle_view_destroyed,
			.focus = handle_view_focus,
			.request = {
				.geometry = handle_view_geometry_request
			}
		},
		.keyboard = {
			.key = handle_key
		},
		.pointer = {
			.motion = handle_pointer_motion,
			.button = handle_pointer_button
		}

	};

	setenv("WLC_DIM", "0", 0);
	if (!wlc_init(&interface, argc, argv)) {
		return 1;
	}

	setenv("DISPLAY", ":1", 1);
	if (!load_config()) {
		sway_abort("Unable to load config");
	}

	wlc_run();
	return 0;
}