-const static char *background_color = "#3e3e3e";
-const static char *border_color = "#ececec";
+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";
+static const unsigned line_spacing = 5;
+static const unsigned int padding = 15;
-const static char *font_style = "Inconsolata:style=Medium:size=15";
-const static char *font_color = "#ececec";
-const static unsigned short text_padding = 10;
+static const unsigned int width = 450;
+static const unsigned int border_size = 2;
+static const unsigned int pos_x = 30;
+static const unsigned int pos_y = 60;
-const static unsigned short width = 300;
-const static unsigned short border_size = 2;
-const static unsigned short pos_x = 40;
-const static unsigned short pos_y = 50;
+enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
+enum corners corner = TOP_RIGHT;
-enum corners { top_left, top_right, down_right, down_left };
-enum corners corner = top_right;
+static const unsigned int duration = 5; /* in seconds */
-const static unsigned short duration = 5;
+#define DISMISS_BUTTON Button1
+#define ACTION_BUTTON Button3
\ No newline at end of file