xbattmon

simple battery monitor for X
git clone git://git.2f30.org/xbattmon
Log | Files | Refs | README | LICENSE

config.def.h (519B)


      1 char *colors[] = {
      2 	[COLOR_BAT_CHARGED]     = "green",
      3 	[COLOR_BAT_LEFT2CHARGE] = "grey",
      4 	[COLOR_BAT_DRAINED]     = "red",
      5 	[COLOR_BAT_LEFT2DRAIN]  = "blue"
      6 };
      7 
      8 unsigned int thickness = 2;	/* 2 pixels by default */
      9 int placement = BOTTOM;		/* set to TOP if you want a top placement */
     10 int maxcap = 100;		/* maximum battery capacity */
     11 int raise = 0;			/* set to 1 if you want the bar to be raised on top of other windows */
     12 int critical = 5;		/* start blinking below 5% */
     13 int transparent = 0;		/* transparent mode */