dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

config.h (485B)


      1 /* user and group to drop privileges to */
      2 static const char *user  = "nobody";
      3 static const char *group = "nobody";
      4 
      5 static const char *colorname[NUMCOLS] = {
      6 	[INIT] =   "#000000",   /* after initialization */
      7 	[INPUT] =  "#1B5E20",   /* during input */
      8 	[FAILED] = "#B71C1C",   /* wrong password */
      9 };
     10 
     11 /* treat a cleared input like a wrong password (color) */
     12 static const int failonclear = 0;
     13 
     14 /* time in seconds before the monitor shuts down */
     15 static const int monitortime = 5;