sway/sway/main.c

37 lines
729 B
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>
#include "config.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
const char *name = "/.i3/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) {
2015-08-06 02:56:45 +00:00
load_config();
static struct wlc_interface interface = { };
if (!wlc_init(&interface, argc, argv)) {
return 1;
}
wlc_run();
2015-08-05 01:02:46 +00:00
return 0;
}