Files
slock/config.def.h
Sravan Balaji b8e289d20a capscolor patch
- Apply capscolor patch
- Change README to markdown
- Add capscolor patch link to README
2020-12-11 10:42:20 -05:00

14 lines
441 B
C

/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */
[INPUT] = "#005577", /* during input */
[FAILED] = "#CC3333", /* wrong password */
[CAPS] = "red", /* CapsLock on */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;