updated keys to include slock usage

This commit is contained in:
klein panic
2025-03-05 20:34:38 -05:00
parent 68e5037858
commit d56151fe12
17 changed files with 676 additions and 3 deletions

12
slock/config.h Normal file
View File

@@ -0,0 +1,12 @@
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nogroup";
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */
[INPUT] = "#005577", /* during input */
[FAILED] = "#CC3333", /* wrong password */
};
/* treat a cleared input like a wrong password (color) */
static const int failonclear = 1;