2012-07-22 09:45:10 +00:00
|
|
|
/* The height of the bar (in pixels) */
|
2012-07-16 09:41:34 +00:00
|
|
|
#define BAR_HEIGHT 18
|
2012-08-17 00:29:18 +00:00
|
|
|
/* 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 */
|
2012-08-18 11:48:54 +00:00
|
|
|
#define BAR_OFFSET 0
|
2012-07-25 15:09:04 +00:00
|
|
|
/* Choose between an underline or an overline */
|
|
|
|
#define BAR_UNDERLINE 1
|
|
|
|
/* The thickness of the underline (in pixels). Set to 0 to disable. */
|
2012-07-20 14:28:12 +00:00
|
|
|
#define BAR_UNDERLINE_HEIGHT 2
|
2012-08-17 11:32:48 +00:00
|
|
|
/* Default bar position, overwritten by '-b' switch */
|
|
|
|
#define BAR_BOTTOM 0
|
2012-07-25 14:55:26 +00:00
|
|
|
/* The fonts used for the bar, comma separated. Only the first 2 will be used. */
|
|
|
|
#define BAR_FONT "-*-terminus-medium-r-normal-*-12-*-*-*-c-*-*-1","fixed"
|
2012-11-10 13:48:21 +00:00
|
|
|
/* Some fonts don't set the right width for some chars, pheex it */
|
|
|
|
#define BAR_FONT_FALLBACK_WIDTH 6
|
2013-09-02 13:35:32 +00:00
|
|
|
/* Define the opacity of the bar (requires a compositor such as compton) */
|
|
|
|
#define BAR_OPACITY 1.0 /* 0 is invisible, 1 is opaque */
|
2012-07-22 09:45:10 +00:00
|
|
|
/* Color palette */
|
2013-08-31 15:36:32 +00:00
|
|
|
#define BACKGROUND 0x232c31
|
|
|
|
#define COLOR0 0x2d3c46
|
|
|
|
#define COLOR1 0xac4142
|
|
|
|
#define COLOR2 0x90a959
|
|
|
|
#define COLOR3 0xde935f
|
|
|
|
#define COLOR4 0x6a9fb5
|
|
|
|
#define COLOR5 0xaa759f
|
|
|
|
#define COLOR6 0x75b5aa
|
|
|
|
#define COLOR7 0x6c7a80
|
|
|
|
#define COLOR8 0x425059
|
|
|
|
#define COLOR9 0xcc6666
|
|
|
|
#define FOREGROUND 0xc5c8c6
|