diff options
author | Joe <bousset.rudy@gmail.com> | 2022-05-31 17:18:30 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-05-31 17:18:30 +0200 |
commit | 9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d (patch) | |
tree | f2fc14253e4fdc05d8257ebffe12372ef45f2c74 /config.h | |
parent | Properly clear the last entered character (diff) | |
download | slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.gz slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.bz2 slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.xz slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.zst slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.zip |
First Joe commit, background image patch customized
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 15 |
1 files changed, 15 insertions, 0 deletions
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; |