Add usage information, more error checking
[herbe.git] / config.h
1 const static char *background_color = "#3e3e3e";
2 const static char *border_color = "#ececec";
3
4 const static char *font_style = "Inconsolata:style=Medium:size=15";
5 const static char *font_color = "#ececec";
6 const static unsigned short text_padding = 10;
7
8 const static unsigned short width = 300;
9 const static unsigned short border_size = 2;
10 const static unsigned short pos_x = 40;
11 const static unsigned short pos_y = 50;
12
13 enum corners { top_left, top_right, down_right, down_left };
14 enum corners corner = top_right;
15
16 const static unsigned short duration = 5;