slock/config.h

25 lines
734 B
C
Raw Normal View History

2019-06-09 11:52:44 +00:00
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nobody";
2019-06-09 11:52:44 +00:00
static const char *colorname[NUMCOLS] = {
[INIT] = "#000000", /* after initialization */
2020-05-14 06:18:56 +00:00
[INPUT] = "#282a36", /* during input */
[FAILED] = "#ff5555", /* wrong password */
2019-06-09 11:52:44 +00:00
};
/* lock screen opacity */
2020-01-26 14:19:35 +00:00
static const float alpha = 0.5;
2019-06-09 11:52:44 +00:00
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
2019-06-09 12:55:41 +00:00
/* default message */
static const char * message = "Enter password to unlock";
2019-06-09 12:55:41 +00:00
/* text color */
static const char * text_color = "#ffffff";
/* text size (must be a valid size) */
2019-06-09 16:30:40 +00:00
static const char * text_size = "-*-dejavu sans mono-bold-r-normal--22-*-*-*-*-*-iso10646-1";