diff options
| author | NPScript <nathan.p.reiner@gmail.com> | 2021-02-22 12:08:25 +0100 |
|---|---|---|
| committer | NPScript <nathan.p.reiner@gmail.com> | 2021-02-22 12:08:25 +0100 |
| commit | 0370484f394512a3240f1efe6cebe61744ea780e (patch) | |
| tree | f6d9c7c68136f5c7a183b7a15da88fca83b4df4d /config.h | |
init commit
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..400e4f2 --- /dev/null +++ b/config.h @@ -0,0 +1,17 @@ +/* user and group to drop privileges to */ +static const char *user = "nobody"; +static const char *group = "nogroup"; + +static const char *colorname[NUMCOLS] = { + [INIT] = "#000000", /* after initialization */ + [INPUT] = "#000000", /* during input */ + [FAILED] = "#000000", /* wrong password */ +}; + +/* treat a cleared input like a wrong password (color) */ +static const int failonclear = 1; +const char * fonts[] = {"Source Code Pro:size=24"}; +const char * schemes[] = {"#ffffff", "#000000", "#000000"}; +const int diasize[] = {320, 320}; +const char * lock_message = "Nathan Reiner"; +const char * pass_char = "•"; |