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

27
i3bar/include/outputs.h Normal file
View File

@ -0,0 +1,27 @@
#ifndef OUTPUTS_H_
#define OUTPUTS_H_
#include "common.h"
#include <xcb/xcb.h>
typedef struct i3_output_t i3_output;
i3_output* outputs;
void refresh_outputs();
void free_outputs();
i3_output* get_output_by_name(char* name);
struct i3_output_t {
char* name;
bool active;
int ws;
rect rect;
xcb_window_t win;
xcb_gcontext_t gctx;
i3_output* next;
};
#endif