herbe/config.h

16 lines
602 B
C
Raw Normal View History

const static char *background_color = "#3e3e3e";
const static char *border_color = "#ececec";
const static char *font_color = "#ececec";
const static char *font_pattern = "Inconsolata:style=Medium:size=13";
2020-08-01 21:00:20 +02:00
const static unsigned line_spacing = 5;
2020-07-31 18:58:35 +02:00
const static unsigned int padding = 15;
2020-07-24 13:51:07 +02:00
2020-08-01 21:34:48 +02:00
const static unsigned int width = 400;
2020-07-31 14:59:52 +02:00
const static unsigned int border_size = 2;
2020-08-01 21:00:20 +02:00
const static unsigned int pos_x = 30;
2020-07-31 14:59:52 +02:00
const static unsigned int pos_y = 50;
2020-07-24 13:51:07 +02:00
2020-07-31 10:59:07 +02:00
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
enum corners corner = TOP_RIGHT;
2020-07-29 15:09:34 +02:00
2020-08-01 21:00:20 +02:00
const static unsigned int duration = 5; /* in seconds */