View difference between Paste ID: 1dmK08Xi and By4JmMMH
SHOW: | | - or go back to the newest paste.
1
/* The height of the bar (in pixels) */
2
#define BAR_HEIGHT  18
3
/* The width of the bar. Set to -1 to fit screen */
4
#define BAR_WIDTH   -1
5
/* Offset from the left. Set to 0 to have no effect */
6
#define BAR_OFFSET 0
7
/* Choose between an underline or an overline */
8
#define BAR_UNDERLINE 1
9
/* The thickness of the underline (in pixels). Set to 0 to disable. */
10
#define BAR_UNDERLINE_HEIGHT 2
11
/* Default bar position, overwritten by '-b' switch */
12
#define BAR_BOTTOM 0
13
/* The fonts used for the bar, comma separated. Only the first 2 will be used.  
14
 * */
15
#define BAR_FONT "-*-stlarch-*-*-*-*-*-*-*-*-*-*-*-*","-*-termsynu-medium-*-*-*-*-*-*-*-*-*-*-*"
16
/* Some fonts don't set the right width for some chars, pheex it */
17
#define BAR_FONT_FALLBACK_WIDTH 6
18
/* Color palette */
19
#define COLOR0  0x1A1A1A /* background */
20
#define COLOR1  0xA9A9A9 /* foreground */
21
#define COLOR2  0x303030
22
#define COLOR3  0xF92672
23
#define COLOR4  0xA6E22E
24
#define COLOR5  0xFD971F
25
#define COLOR6  0x66D9EF
26
#define COLOR7  0x9E6FFE
27
#define COLOR8  0xAF875F
28
#define COLOR9  0xCCCCC6