From 9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 31 May 2022 17:18:30 +0200 Subject: First Joe commit, background image patch customized --- config.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..f182a3a --- /dev/null +++ b/config.h @@ -0,0 +1,15 @@ +/* user and group to drop privileges to */ +static const char *user = "nobody"; +static const char *group = "nobody"; + +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; + +/* Background image path, should be available to the user above */ +static const char* background_image = NULL; -- cgit v1.2.3