slock/config.def.h

22 lines
579 B
C
Raw Permalink Normal View History

2021-02-12 10:28:39 +00:00
/* user and group to drop privileges to */
static const char *user = "nobody";
2021-04-05 12:45:21 +00:00
static const char *group = "nobody";
2021-02-12 10:28:39 +00:00
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */
[INPUT] = "#005577", /* during input */
[FAILED] = "#CC3333", /* wrong password */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 0;
/*Enable blur*/
//#define BLUR
/*Set blur radius*/
static const int blurRadius=5;
/*Enable Pixelation*/
#define PIXELATION
/*Set pixelation radius*/
static const int pixelSize=10;