Xinqi Bao's Git
   1 /* user and group to drop privileges to */ 
   2 static const char *user  
= "xbao"; 
   3 static const char *group 
= "xbao"; 
   5 static const char *colorname
[NUMCOLS
] = { 
   6         [INIT
] =   "black",     /* after initialization */ 
   7         [INPUT
] =  "#005577",   /* during input */ 
   8         [FAILED
] = "#CC3333",   /* wrong password */ 
  11 /* treat a cleared input like a wrong password (color) */ 
  12 static const int failonclear 
= 1; 
  15 static const char * message 
= "Suckless: Software that sucks less."; 
  18 static const char * text_color 
= "#ffffff"; 
  20 /* text size (must be a valid size) */ 
  21 static const char * font_name 
= "6x13";