| 123456789101112131415161718192021222324 | 
							- /* XPM */
 
- static const char *const stattext_xpm[] = {
 
- /* width height ncolors chars_per_pixel */
 
- "16 16 2 1",
 
- /* colors */
 
- " 	s None	c None",
 
- ".	c #000000",
 
- /* pixels */
 
- "                ",
 
- "                ",
 
- "                ",
 
- "   ..           ",
 
- "   ..           ",
 
- "  ....          ",
 
- "  ....    ....  ",
 
- "  .  .   ..  .. ",
 
- " ..  ..    .... ",
 
- " ..  ..   .. .. ",
 
- " ......  ..  .. ",
 
- "..    .. ..  .. ",
 
- "..    ..  ..... ",
 
- "                ",
 
- "                ",
 
- "                "};
 
 
  |