Some stylechanges to previous commit

This commit is contained in:
Axel Wagner
2010-11-04 12:27:10 +01:00
parent 6376cf99d2
commit 992612c89d
5 changed files with 26 additions and 23 deletions

View File

@ -24,12 +24,12 @@ struct rect_t {
#include "queue.h"
#include "child.h"
#include "config.h"
#include "ipc.h"
#include "outputs.h"
#include "util.h"
#include "workspaces.h"
#include "xcb.h"
#include "ucs2_to_utf8.h"
#include "config.h"
#endif

View File

@ -1,9 +1,12 @@
#ifndef CONFIG_H_
#define CONFIL_H_
#define CONFIG_H_
#include "common.h"
typedef struct config_t {
int hide_on_modifier;
int verbose;
int hide_on_modifier;
int verbose;
xcb_colors_t *colors;
} config_t;
config_t config;

View File

@ -10,8 +10,9 @@
#define XCB_H_
#include <stdint.h>
//#include "outputs.h"
struct colors_t {
struct xcb_color_strings_t {
char *bar_fg;
char *bar_bg;
char *active_ws_fg;
@ -22,16 +23,7 @@ struct colors_t {
char *urgent_ws_fg;
};
struct parsed_colors_t {
uint32_t bar_fg;
uint32_t bar_bg;
uint32_t active_ws_fg;
uint32_t active_ws_bg;
uint32_t inactive_ws_fg;
uint32_t inactive_ws_bg;
uint32_t urgent_ws_bg;
uint32_t urgent_ws_fg;
};
typedef struct xcb_colors_t xcb_colors_t;
/*
* Initialize xcb and use the specified fontname for text-rendering
@ -43,7 +35,7 @@ void init_xcb();
* Initialize the colors
*
*/
void init_colors(const struct colors_t *colors);
void init_colors(const struct xcb_color_strings_t *colors);
/*
* Cleanup the xcb-stuff.