sway/sway/main.c

67 lines
1.3 KiB
C
Raw Normal View History

2015-08-05 01:02:46 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <wlc/wlc.h>
2015-08-06 12:40:16 +00:00
#include "layout.h"
#include "config.h"
#include "log.h"
#include "handlers.h"
2015-08-05 01:02:46 +00:00
struct sway_config *config;
2015-08-06 02:56:45 +00:00
void load_config() {
// TODO: Allow use of more config file locations
2015-08-08 23:24:18 +00:00
const char *name = "/.sway/config";
const char *home = getenv("HOME");
char *temp = malloc(strlen(home) + strlen(name) + 1);
strcpy(temp, home);
strcat(temp, name);
FILE *f = fopen(temp, "r");
if (!f) {
fprintf(stderr, "Unable to open %s for reading", temp);
free(temp);
exit(1);
}
free(temp);
config = read_config(f);
fclose(f);
}
int main(int argc, char **argv) {
init_log(L_DEBUG); // TODO: Control this with command line arg
2015-08-06 12:40:16 +00:00
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,
2015-08-08 22:22:22 +00:00
.focus = handle_view_focus,
.request = {
.geometry = handle_view_geometry_request
}
2015-08-08 23:24:18 +00:00
},
.keyboard = {
.key = handle_key
2015-08-09 13:23:10 +00:00
},
.pointer = {
.motion = handle_pointer_motion,
.button = handle_pointer_button
}
};
if (!wlc_init(&interface, argc, argv)) {
return 1;
}
2015-08-09 17:54:52 +00:00
setenv("DISPLAY", ":1", 1);
load_config();
wlc_run();
2015-08-05 01:02:46 +00:00
return 0;
}