diff options
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -3,9 +3,7 @@ static const char *user = "nobody"; static const char *group = "nogroup"; static const char *colorname[NUMCOLS] = { - [INIT] = "#181818", /* after initialization */ - [INPUT] = "#181818", /* during input */ - [FAILED] = "#181818", /* wrong password */ + [BACKGROUND] = "#181818", /* Background */ }; /* treat a cleared input like a wrong password (color) */ @@ -13,5 +11,6 @@ static const int failonclear = 1; const char * fonts[] = {"Source Code Pro:size=24"}; const char * schemes[] = {"#547f62", "#181818", "#181818"}; const int diasize[] = {320, 320}; -const char * lock_message = "Nathan Reiner"; +const char * lock_message = "> Nathan Reiner"; const char * pass_char = "•"; +const char * cursor_char = "_"; |