/* The height of the bar (in pixels) */ #define BAR_HEIGHT 16 /* 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 3 /* 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 "-*-stlarch-medium-r-normal-*-10-*-*-*-*-*-*-*","-*-cure.se-medium-r-normal-*-11-*-*-*-*-*-*-*" /* Some fonts don't set the right width for some chars, pheex it */ #define BAR_FONT_FALLBACK_WIDTH 4 /* Color palette */ #define COLOR0 0x111111 /* Background */ #define COLOR1 0xc4c4c4 /* Foreground */ #define COLOR2 0x283B5D /* Blue */ #define COLOR3 0x852a52 /* Red */ #define COLOR4 0xadbd00 /* Green */ #define COLOR5 0xec9d08 /* Orange */ #define COLOR6 0x6b0f38 /* Magenta */ #define COLOR7 0x212122 /* Black'n'Gray I */ #define COLOR8 0x333333 /* Black'n'Gray II */ #define COLOR9 0xdedede /* White */