Giant blob of minor changes
[dotfiles/.git] / .config / slock / config.h
1 /* user and group to drop privileges to */
2 static const char *user  = "nobody";
3 static const char *group = "nobody";
4
5 static const char *colorname[NUMCOLS] = {
6         [INIT] =   "#000000",   /* after initialization */
7         [INPUT] =  "#282c34",   /* during input */
8         [FAILED] = "#be5046",   /* wrong password */
9 };
10
11 /* lock screen opacity */
12 static const float alpha = 0.5;
13
14 /* treat a cleared input like a wrong password (color) */
15 static const int failonclear = 1;
16
17 /* default message */
18 static const char * message = "Enter password to unlock";
19
20 /* text color */
21 static const char * text_color = "#abb2bf";
22
23 /* text size (must be a valid size) */
24 static const char * text_size = "fixed";