blob: 96294e080050a9ccaa1d383cf66a8beb66d55c74 (
plain)
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
|
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <wlc/wlc.h>
#include "config.h"
struct sway_config *config;
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) {
load_config();
return 0;
static struct wlc_interface interface = { };
if (!wlc_init(&interface, argc, argv)) {
return 1;
}
wlc_run();
return 0;
}
|