Add header for config.h, retab! the file
This commit is contained in:
parent
cbc3880007
commit
54fb9435f8
@ -1,3 +1,17 @@
|
|||||||
|
/*
|
||||||
|
* vim:ts=8:expandtab
|
||||||
|
*
|
||||||
|
* i3 - an improved dynamic tiling window manager
|
||||||
|
*
|
||||||
|
* (c) 2009 Michael Stapelberg and contributors
|
||||||
|
*
|
||||||
|
* See file LICENSE for license information.
|
||||||
|
*
|
||||||
|
* include/config.h: Contains all structs/variables for
|
||||||
|
* the configurable part of i3
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef _CONFIG_H
|
#ifndef _CONFIG_H
|
||||||
#define _CONFIG_H
|
#define _CONFIG_H
|
||||||
|
|
||||||
@ -5,25 +19,25 @@ typedef struct Config Config;
|
|||||||
extern Config config;
|
extern Config config;
|
||||||
|
|
||||||
struct Colortriple {
|
struct Colortriple {
|
||||||
char border[8];
|
char border[8];
|
||||||
char background[8];
|
char background[8];
|
||||||
char text[8];
|
char text[8];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Config {
|
struct Config {
|
||||||
const char *terminal;
|
const char *terminal;
|
||||||
const char *font;
|
const char *font;
|
||||||
|
|
||||||
/* Color codes are stored here */
|
/* Color codes are stored here */
|
||||||
struct config_client {
|
struct config_client {
|
||||||
struct Colortriple focused;
|
struct Colortriple focused;
|
||||||
struct Colortriple focused_inactive;
|
struct Colortriple focused_inactive;
|
||||||
struct Colortriple unfocused;
|
struct Colortriple unfocused;
|
||||||
} client;
|
} client;
|
||||||
struct config_bar {
|
struct config_bar {
|
||||||
struct Colortriple focused;
|
struct Colortriple focused;
|
||||||
struct Colortriple unfocused;
|
struct Colortriple unfocused;
|
||||||
} bar;
|
} bar;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user