19 lines
679 B
C
19 lines
679 B
C
static const char *background_color = "#282828";
|
|
static const char *border_color = "#d65d0e";
|
|
static const char *font_color = "#d65d0e";
|
|
static const char *font_pattern = "Hack:pixelsize=12:antialias=true:autohint=true";
|
|
static const unsigned line_spacing = 5;
|
|
static const unsigned int padding = 15;
|
|
|
|
static const unsigned int width = 450;
|
|
static const unsigned int border_size = 1;
|
|
static const unsigned int pos_x = 20;
|
|
static const unsigned int pos_y = 20;
|
|
|
|
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
|
|
enum corners corner = TOP_RIGHT;
|
|
|
|
static const unsigned int duration = 5; /* in seconds */
|
|
|
|
#define DISMISS_BUTTON Button1
|
|
#define ACTION_BUTTON Button3
|