sxalert

Simple notification system for X
git clone git://mcdim.xyz/sxalert.git
Log | Files | Refs | README | LICENSE

config.h (646B)


      1 /* Simple X Alert v0.1
      2  * Simple notification program for X
      3  * GNU GPL v3.0
      4  *
      5  * config.h - configuration file
      6  */
      7 
      8 #define BUFFER 2054
      9 
     10 static int duration = 5000; /* in milliseconds */
     11 
     12 /* default appearance */
     13 
     14 static char text_color[7]	= "dfe3e3";
     15 static char bg_color[7]		= "1a1616";
     16 static char border_color[7]	= "dfe3e3";
     17 
     18 static int border_width	= 1;
     19 static int text_x_padding = 15;
     20 
     21 static int min_width = 300; 
     22 static int max_width = 1000;
     23 
     24 static int x_offset = 20; /* pixels from right */
     25 static int y_offset = 40; /* pixels from top */
     26 
     27 const char *fontname = "DejaVu Sans Mono:size=13:antialias=true";
     28 static int text_height = 11;