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.def.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.def.h')
-rw-r--r-- | config.def.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 9855e21..eb88b3d 100644 --- a/config.def.h +++ b/config.def.h @@ -1,6 +1,6 @@ /* user and group to drop privileges to */ static const char *user = "nobody"; -static const char *group = "nogroup"; +static const char *group = "nobody"; static const char *colorname[NUMCOLS] = { [INIT] = "black", /* after initialization */ @@ -10,3 +10,6 @@ static const char *colorname[NUMCOLS] = { /* 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 = ""; |