sxalert

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

config.h (590B)


      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 #include "sxalert.h"
      9 
     10 /* configure values below */
     11 static const struct alert default_alert = {
     12 	.duration 	= 5000, /* ms */
     13 	
     14 	/* default appearance */
     15 	
     16 	.text_color	= "dfe3e3",
     17 	.bg_color	= "1a1616",
     18 	.border_color	= "dfe3e3",
     19 
     20 	.border_width	= 1,
     21 	.text_x_padding = 15,
     22 
     23 	.min_width	= 300, 
     24 	.max_width	= 1000,
     25 
     26 	.x_offset	= 20, /* pixels from right */
     27 	.y_offset	= 40, /* pixels from top */
     28 
     29 	.font		= "DejaVu Sans Mono:size=13:antialias=true",
     30 	.text_height 	= 10,
     31 };