config.h - dotfiles - These are my dotfiles. There are many like it, but these are mine.
 (HTM) git clone git://jay.scot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       config.h (608B)
       ---
            1 static const char *background_color = "#222222";
            2 static const char *border_color = "#008000";
            3 static const char *font_color = "#ffd7af";
            4 static const char *font_pattern = "Hack:pixelsize=12";
            5 static unsigned line_spacing = 5;
            6 static unsigned int padding = 12;
            7 
            8 static unsigned int width = 300;
            9 static unsigned int border_size = 3;
           10 static unsigned int pos_x = 30;
           11 static unsigned int pos_y = 60;
           12 
           13 enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
           14 enum corners corner = TOP_RIGHT;
           15 
           16 static unsigned int duration = 5; /* in seconds */
           17 
           18 #define DISMISS_BUTTON Button1
           19 #define ACTION_BUTTON Button3