14 lines
453 B
C
14 lines
453 B
C
![]() |
unsigned long background_color = 0xFFFFFF;
|
||
|
unsigned long border_color = 0xFF0000;
|
||
|
|
||
|
const static char *font_style = "Inconsolata:style=Medium:size=13";
|
||
|
const static char *font_color = "#000000";
|
||
|
|
||
|
const static unsigned int width = 325;
|
||
|
const static unsigned int height = 50;
|
||
|
const static unsigned int border_size = 5;
|
||
|
const static unsigned int pos_x = 1920 - width - border_size - 30;
|
||
|
const static unsigned int pos_y = 50;
|
||
|
|
||
|
const static int duration = 5;
|