diff options
| author | NPScript <nathan@reinerweb.ch> | 2021-02-24 11:25:55 +0100 |
|---|---|---|
| committer | NPScript <nathan@reinerweb.ch> | 2021-02-24 11:25:55 +0100 |
| commit | ba80b9f6cd448f362aa37079a51d430af4ad468c (patch) | |
| tree | 025f240ef66edbc84f216bf4fb0b26bc215b17e7 /config.h | |
| parent | bfbca90991c227c4db99018edbb0325557e931d0 (diff) | |
cleanup
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 = "_"; |