From b3eaf4d3e1e3031054fadbc47eb749f47f901e83 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sun, 1 Dec 2013 23:59:31 +0100 Subject: Initial commit --- foo/bar/config.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 foo/bar/config.h (limited to 'foo/bar') diff --git a/foo/bar/config.h b/foo/bar/config.h new file mode 100644 index 0000000..863e764 --- /dev/null +++ b/foo/bar/config.h @@ -0,0 +1,31 @@ +/* The height of the bar (in pixels) */ +#define BAR_HEIGHT 18 +/* The width of the bar. Set to -1 to fit screen */ +#define BAR_WIDTH -1 +/* Offset from the left. Set to 0 to have no effect */ +#define BAR_OFFSET 0 +/* Choose between an underline or an overline */ +#define BAR_UNDERLINE 1 +/* The thickness of the underline (in pixels). Set to 0 to disable. */ +#define BAR_UNDERLINE_HEIGHT 2 +/* Default bar position, overwritten by '-b' switch */ +#define BAR_BOTTOM 0 +/* The fonts used for the bar, comma separated. Only the first 2 will be used. */ +#define BAR_FONT "fixed","fixed" +/* Some fonts don't set the right width for some chars, pheex it */ +#define BAR_FONT_FALLBACK_WIDTH 6 +/* Define the opacity of the bar (requires a compositor such as compton) */ +#define BAR_OPACITY 1.0 /* 0 is invisible, 1 is opaque */ +/* Color palette */ +#define BACKGROUND 0x333333 +#define COLOR0 0xeeeeee /* Normal text */ +#define COLOR1 0x777777 /* inactive text */ +#define COLOR2 0xff0000 /* Warning */ +#define COLOR3 0x55C5FF /* progbars */ +#define COLOR4 0x256590 /* progbars2 */ +#define COLOR5 0x555555 +#define COLOR6 0x75b5aa +#define COLOR7 0x6c7a80 +#define COLOR8 0x425059 +#define COLOR9 0xcc6666 +#define FOREGROUND 0xeeeeee -- cgit v1.2.3-54-g00ecf