2022-10-04 18:19:19 +00:00
|
|
|
static const char *background_color = "#282828";
|
2022-12-06 14:27:25 +00:00
|
|
|
static const char *border_color = "#d65d0e";
|
|
|
|
static const char *font_color = "#d65d0e";
|
2022-10-04 18:19:19 +00:00
|
|
|
static const char *font_pattern = "Hack:pixelsize=12:antialias=true:autohint=true";
|
2020-08-19 21:02:01 +02:00
|
|
|
static const unsigned line_spacing = 5;
|
|
|
|
static const unsigned int padding = 15;
|
|
|
|
|
|
|
|
static const unsigned int width = 450;
|
2022-10-04 18:19:19 +00:00
|
|
|
static const unsigned int border_size = 1;
|
2022-12-06 14:27:25 +00:00
|
|
|
static const unsigned int pos_x = 20;
|
2022-10-04 18:19:19 +00:00
|
|
|
static const unsigned int pos_y = 20;
|
2020-08-19 21:02:01 +02:00
|
|
|
|
|
|
|
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
|
2023-09-17 21:26:38 +00:00
|
|
|
enum corners corner = TOP_RIGHT;
|
2020-08-19 21:02:01 +02:00
|
|
|
|
|
|
|
static const unsigned int duration = 5; /* in seconds */
|
|
|
|
|
|
|
|
#define DISMISS_BUTTON Button1
|
|
|
|
#define ACTION_BUTTON Button3
|