2012-07-22 11:45:10 +02:00
|
|
|
/* The height of the bar (in pixels) */
|
2012-07-16 11:41:34 +02:00
|
|
|
#define BAR_HEIGHT 18
|
2012-07-22 11:45:10 +02:00
|
|
|
/* The thickness of the underline (in pixels) */
|
2012-07-20 16:28:12 +02:00
|
|
|
#define BAR_UNDERLINE_HEIGHT 2
|
2012-07-22 11:45:10 +02:00
|
|
|
/* Tell the WM to reserve the space we use.
|
|
|
|
* Some window managers don't respect the EWMH hints though and
|
|
|
|
* leave bar as a separate window. Just set this to 0 if it happens.
|
|
|
|
*/
|
|
|
|
#define BAR_EWMH_DOCKING 1
|
|
|
|
/* Whether to put the bar at the screen bottom or not */
|
|
|
|
#define BAR_BOTTOM 0
|
|
|
|
/* The font used for the bar */
|
|
|
|
#define BAR_FONT "-*-terminus-medium-r-normal-*-12-*-*-*-c-*-*-1"
|
|
|
|
/* Color palette */
|
2012-07-20 16:28:12 +02:00
|
|
|
#define COLOR0 0x1A1A1A /* background */
|
|
|
|
#define COLOR1 0xA9A9A9 /* foreground */
|
|
|
|
#define COLOR2 0x303030
|
|
|
|
#define COLOR3 0xF92672
|
|
|
|
#define COLOR4 0xA6E22E
|
|
|
|
#define COLOR5 0xFD971F
|
|
|
|
#define COLOR6 0x66D9EF
|
|
|
|
#define COLOR7 0x9E6FFE
|
|
|
|
#define COLOR8 0xAF875F
|
|
|
|
#define COLOR9 0xCCCCC6
|
|
|
|
|