blob: 452983d42aa39efce3034cbfc7668afd870a4e66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nogroup";
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */
[INPUT] = "#005577", /* during input */
[FAILED] = "#CC3333", /* wrong password */
};
/* allow control key to trigger fail on clear */
static const int controlkeyclear = 0;
/* time in seconds before the monitor shuts down */
static const int monitortime = 30;
/* default message */
static const char * lock_message = "locked.";
/* text color */
static const char * text_fg_color = "#fff";
static const char * text_bg_color = "#f00";
/* text size (must be a valid size) */
static const char * font_name = "fixed";
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
/*Enable blur*/
#define BLUR
/*Set blur radius*/
static const int blurRadius=5;
/*Enable Pixelation*/
//#define PIXELATION
/*Set pixelation radius*/
static const int pixelSize=0;
|