I don't want fingerprint in slock.

This commit is contained in:
Bartek Stalewski 2021-07-21 15:20:09 +02:00
parent a82c8cd2e8
commit e437b906b5
5 changed files with 12 additions and 223 deletions

View file

@ -1,21 +1,17 @@
/* user and group to drop privileges to */
static const char *user = "f";
static const char *group = "users";
static const char *user = "nobody";
static const char *group = "nogroup";
static const char *colorname[NUMCOLS] = {
[BACKGROUND] = "black", /* after initialization */
[INIT] = "#2d2d2d", /* after initialization */
[INPUT] = "#005577", /* during input */
[FAILED] = "#CC3333", /* wrong password */
[PAM] = "#005577", /* waiting for PAM */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;
/* PAM service that's used for authentication */
static const char* pam_service = "login";
/* insert grid pattern with scale 1:1, the size can be changed with logosize */
static const int logosize = 75;
static const int logow = 12; /* grid width and height for right center alignment*/