herbe

git clone git://mattcarlson.org/repos/herbe.git
Log | Files | Refs

config.h (732B)


      1 // herbe
      2 
      3 // colors
      4 static const char *background_color = "#3e3e3e";
      5 static const char *border_color = "#ececec";
      6 static const char *font_color = "#ececec";
      7 
      8 // font
      9 static const char *font_pattern = "monospace:size=10";
     10 
     11 // line spacing
     12 static unsigned line_spacing = 5;
     13 
     14 // padding
     15 static unsigned int padding = 15;
     16 
     17 // width
     18 static unsigned int width = 450;
     19 
     20 // border size
     21 static unsigned int border_size = 2;
     22 
     23 // positions
     24 static unsigned int pos_x = 30;
     25 static unsigned int pos_y = 60;
     26 
     27 // corners
     28 enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
     29 enum corners corner = TOP_RIGHT;
     30 
     31 // time on screen
     32 static unsigned int duration = 5;
     33 
     34 // button defs
     35 #define DISMISS_BUTTON Button1
     36 #define ACTION_BUTTON Button3