Start tracking changes

This commit is contained in:
Axel Wagner
2010-07-22 01:15:18 +02:00
commit 02df973564
16 changed files with 1607 additions and 0 deletions

29
i3bar/src/main.c Normal file
View File

@ -0,0 +1,29 @@
#include "ipc.h"
#include "outputs.h"
#include "workspaces.h"
#include "common.h"
#include "xcb.h"
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <ev.h>
int main(int argc, char **argv) {
main_loop = ev_default_loop(0);
init_xcb();
refresh_outputs(&create_windows, NULL);
refresh_workspaces(NULL, NULL);
ev_loop(main_loop, 0);
ev_default_destroy();
clean_xcb();
free_outputs();
free_workspaces();
//sleep(5);
return 0;
}