herbe/config.h

19 lines
664 B
C
Raw Normal View History

2020-08-05 20:51:53 +02:00
static const char *background_color = "#3e3e3e";
static const char *border_color = "#ececec";
static const char *font_color = "#ececec";
static const char *font_pattern = "Inconsolata:style=Medium:size=12";
2020-08-05 20:51:53 +02:00
static const unsigned line_spacing = 5;
static const unsigned int padding = 15;
2020-07-24 13:51:07 +02:00
static const unsigned int width = 450;
2020-08-05 20:51:53 +02:00
static const unsigned int border_size = 2;
static const unsigned int pos_x = 30;
static const unsigned int pos_y = 60;
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
static const unsigned int duration = 5; /* in seconds */
2020-08-15 19:32:26 +02:00
#define DISMISS_BUTTON Button1
#define ACTION_BUTTON Button3