Add blurred or pixelated screenshot patch

- Lockscreen is blurred & pixelated version of current screen
This commit is contained in:
Sravan Balaji
2020-08-01 00:20:38 -04:00
parent dee1d27806
commit 47c9f85af5
3 changed files with 87 additions and 5 deletions

View File

@@ -10,3 +10,13 @@ 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=15;
/*Enable Pixelation*/
#define PIXELATION
/*Set pixelation radius*/
static const int pixelSize=10;