diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-09-28 02:14:27 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-09-28 02:14:27 +0200 |
| commit | 370a6fe6e9c4fe8269c6f75a19c4d5159d7a51d6 (patch) | |
| tree | b70aad8e8eda6acd8a5ea7fa7914c2a643e386c7 /config.def.h | |
| parent | f35e22bc844373144d6d5248e09e7341c74983c1 (diff) | |
| download | slock-370a6fe6e9c4fe8269c6f75a19c4d5159d7a51d6.tar.gz slock-370a6fe6e9c4fe8269c6f75a19c4d5159d7a51d6.zip | |
Add optional pixelated background blur
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 9855e21..81a55af 100644 --- a/config.def.h +++ b/config.def.h @@ -10,3 +10,12 @@ static const char *colorname[NUMCOLS] = { /* treat a cleared input like a wrong password (color) */ static const int failonclear = 1; + +/*Enable blur*/ +#define BLUR +/*Set blur radius*/ +static const int blurRadius=5; +/*Enable Pixelation*/ +//#define PIXELATION +/*Set pixelation radius*/ +static const int pixelSize=0; |
