message
[slock.git] / config.def.h
1 /* user and group to drop privileges to */
2 static const char *user  = "pinosaur";
3 static const char *group = "pinosaur";
4
5 static const char *colorname[NUMCOLS] = {
6         [INIT] =   "black",     /* after initialization */
7         [INPUT] =  "#005577",   /* during input */
8         [FAILED] = "#CC3333",   /* wrong password */
9 };
10
11
12 /*
13  * Xresources preferences to load at startup
14  */
15 ResourcePref resources[] = {
16                 { "color0",       STRING,  &colorname[INIT] },
17                 { "color4",       STRING,  &colorname[INPUT] },
18                 { "color1",       STRING,  &colorname[FAILED] },
19 };
20
21 /* treat a cleared input like a wrong password (color) */
22 static const int failonclear = 1;
23
24 /* default message */
25 static const char * message = "Suckless: Software that sucks less.";
26
27 /* text color */
28 static const char * text_color = "#ffffff";
29
30 /* text size (must be a valid size) */
31 static const char * font_name = "fixed";