2020-07-30 15:23:32 +02:00
|
|
|
const static char *background_color = "#3e3e3e";
|
|
|
|
const static char *border_color = "#ececec";
|
|
|
|
const static char *font_color = "#ececec";
|
2020-07-31 10:59:07 +02:00
|
|
|
const static char *font_pattern = "Inconsolata:style=Medium:size=15";
|
2020-07-31 18:58:35 +02:00
|
|
|
const static unsigned int padding = 15;
|
2020-07-24 13:51:07 +02:00
|
|
|
|
2020-07-31 14:59:52 +02:00
|
|
|
const static unsigned int width = 300;
|
|
|
|
const static unsigned int border_size = 2;
|
|
|
|
const static unsigned int pos_x = 40;
|
|
|
|
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-07-31 14:59:52 +02:00
|
|
|
const static unsigned int duration = 5; /* in seconds */
|