blob: e548dc21a9162bfbc51283db8ac66332ace5876e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nogroup";
static const char *colorname[NUMCOLS] = {
[BACKGROUND] = "#282828", /* Background */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
const char * fonts[] = {"Source Code Pro:size=24"};
const char * textcolor[] = {"#689d6a", "#282828", "#282828"};
const char * decoration[] = {"#b16286", "#282828", "#282828"};
const char * pass_char = "•";
|