dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

slock.h (399B)


      1 /* user and group to drop privileges to */
      2 static const char *user  = "nobody";
      3 static const char *group = "nogroup";
      4 
      5 static const char *colorname[NUMCOLS] = {
      6 	[INIT]   = "#002b36",   /* after initialization */
      7 	[INPUT]  = "#268bd2",   /* during input */
      8 	[FAILED] = "#dc322f",   /* wrong password */
      9 };
     10 
     11 /* treat a cleared input like a wrong password (color) */
     12 static const int failonclear = 0;