mirror of
https://github.com/swaywm/sway.git
synced 2025-11-06 13:29:50 -05:00
Pull in some scas code and read i3 config file
This commit is contained in:
parent
6a33e1e3cd
commit
542ef0c777
10 changed files with 351 additions and 2 deletions
39
sway/main.c
39
sway/main.c
|
|
@ -1,6 +1,41 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
#include <wlc/wlc.h>
|
||||
#include "config.h"
|
||||
|
||||
int main() {
|
||||
printf("Hello world\n");
|
||||
struct sway_config *config;
|
||||
|
||||
bool 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);
|
||||
return true;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
if (!load_config()) {
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
// TODO:
|
||||
|
||||
static struct wlc_interface interface = { };
|
||||
if (!wlc_init(&interface, argc, argv)) {
|
||||
return 1;
|
||||
}
|
||||
wlc_run();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue