Display statusline (without formats)

This commit is contained in:
Axel Wagner
2010-08-04 03:34:18 +02:00
parent 8595d3bb48
commit 27aa9a640e
6 changed files with 142 additions and 15 deletions

View File

@ -3,9 +3,12 @@
#include "util.h"
typedef struct rect_t rect;
typedef int bool;
typedef struct rect_t rect;
struct ev_loop* main_loop;
pid_t child_pid;
char *statusline;
struct rect_t {
int x;
@ -14,6 +17,4 @@ struct rect_t {
int h;
};
struct ev_loop* main_loop;
#endif