slock/config.h

13 lines
399 B
C
Raw Permalink Normal View History

2020-05-02 14:16:26 +00:00
/* 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 */
2020-05-17 13:12:54 +00:00
[INPUT] = "#2E4372", /* during input */
2020-05-11 18:52:31 +00:00
[FAILED] = "#420006", /* wrong password */
2020-05-02 14:16:26 +00:00
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 0;