URI:
       config.def.h - slock - [fork] simple X display locker utility
  HTML git clone https://git.drkhsh.at/slock.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       config.def.h (579B)
       ---
            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] =   "black",     /* after initialization */
            7         [INPUT] =  "#005577",   /* during input */
            8         [FAILED] = "#CC3333",   /* wrong password */
            9 };
           10 
           11 /* treat a cleared input like a wrong password (color) */
           12 static const int failonclear = 1;
           13 
           14 /*Enable blur*/
           15 #define BLUR
           16 /*Set blur radius*/
           17 static const int blurRadius=5;
           18 /*Enable Pixelation*/
           19 //#define PIXELATION
           20 /*Set pixelation radius*/
           21 static const int pixelSize=0;