aboutsummaryrefslogtreecommitdiffstats
path: root/swaybg/main.c
blob: b4614ac0888e895f55826ffecff4e01bd8e22b7c (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
#include <stdio.h>
#include <stdlib.h>
#include <wayland-client.h>
#include <time.h>
#include "client/client.h"
#include "log.h"

struct client_state *state;

void sway_terminate(void) {
	client_teardown(state);
	exit(1);
}

int main(int argc, char **argv) {
	init_log(L_INFO);
	if (!(state = client_setup(100, 100))) {
		return -1;
	}
	struct output_state *output = state->outputs->items[0];
	state->width = output->width;
	state->height = output->height;

	uint8_t r = 0, g = 0, b = 0;

	do {
		if (client_prerender(state) && state->cairo) {
			cairo_set_source_rgb(state->cairo, r / 256.0, g / 256.0, b / 256.0);
			cairo_rectangle(state->cairo, 0, 0, state->width, state->height);
			cairo_fill(state->cairo);

			client_render(state);

			r++; g += 2; b += 4;
		}
	} while (wl_display_dispatch(state->display) != -1);

	client_teardown(state);
	return 0;
}