slock/config.def.h

14 lines
441 B
C
Raw Permalink Normal View History

/* user and group to drop privileges to */
static const char *user = "nobody";
2025-03-06 12:06:46 +00:00
static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
2016-11-19 23:29:41 +00:00
[INIT] = "black", /* after initialization */
[INPUT] = "#005577", /* during input */
[FAILED] = "#CC3333", /* wrong password */
2025-03-27 08:44:28 +00:00
[CAPS] = "red", /* CapsLock on */
};
2016-11-19 23:29:41 +00:00
/* treat a cleared input like a wrong password (color) */
2025-03-06 12:06:46 +00:00
static const int failonclear = 0;