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

View File

@ -0,0 +1,26 @@
#ifndef WORKSPACES_H_
#define WORKSPACES_H_
#include "common.h"
#include "outputs.h"
typedef struct i3_ws_t i3_ws;
i3_ws* workspaces;
void refresh_workspaces();
void free_workspaces();
struct i3_ws_t {
int num;
char* name;
bool visible;
bool focused;
bool urgent;
rect rect;
i3_output* output;
i3_ws* next;
};
#endif