slock/config.def.h

14 lines
445 B
C
Raw Normal View History

/* user and group to drop privileges to */
static const char *user = "nobody";
2020-02-06 07:50:23 +00:00
static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
2016-11-19 23:29:41 +00:00
[INIT] = "black", /* after initialization */
2020-02-06 07:50:23 +00:00
[INPUT] = "#268bd2", /* during input */
2016-11-19 23:29:41 +00:00
[FAILED] = "#CC3333", /* wrong password */
2020-02-06 07:50:23 +00:00
[CAPS] = "#b58900", /* CapsLock on */
};
2016-11-19 23:29:41 +00:00
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;