From 16f60c2b10a168255d8ed2675c4ef7eb092268b3 Mon Sep 17 00:00:00 2001 From: davidpkj Date: Sun, 27 Aug 2023 20:54:30 +0200 Subject: Updated to currently used version --- config.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index c1541ca..e5dbdd2 100644 --- a/config.h +++ b/config.h @@ -10,11 +10,16 @@ static const char *colorname[NUMCOLS] = { /* XResources preferences to load at startup */ ResourcePref resources[] = { - { "color0", STRING, &colorname[INIT] }, - { "color1", STRING, &colorname[INPUT] }, - { "color3", STRING, &colorname[FAILED] }, + { "primary", STRING, &colorname[INIT] }, + { "accent", STRING, &colorname[INPUT] }, + { "color1", STRING, &colorname[FAILED] }, }; +/* show color message */ +static const char *message = ""; +static const char *text_color = "#FFFFFF"; +static const char *font_name = "6x13"; + /* treat a cleared input like a wrong password (color) */ static const int failonclear = 0; @@ -43,7 +48,7 @@ static XRectangle rectangles[9] = { /*Enable blur*/ #define BLUR /*Set blur radius*/ -static const int blurRadius=5; +static const int blurRadius=10; /*Enable Pixelation*/ //#define PIXELATION /*Set pixelation radius*/ -- cgit v1.2.3