config.def.h (650B)
1 static const char *background_color = "#3e3e3e"; 2 static const char *border_color = "#ececec"; 3 static const char *font_color = "#ececec"; 4 static const char *font_pattern = "monospace:size=10"; 5 static unsigned line_spacing = 5; 6 static unsigned int padding = 15; 7 static const int use_primary_monitor = 1; 8 9 static unsigned int width = 450; 10 static unsigned int border_size = 2; 11 static unsigned int pos_x = 30; 12 static unsigned int pos_y = 60; 13 14 enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT }; 15 enum corners corner = TOP_RIGHT; 16 17 static unsigned int duration = 3; /* in seconds */ 18 19 #define DISMISS_BUTTON Button1 20 #define ACTION_BUTTON Button3