From 705cf6cb5841dfaa2e39063151d8fc9955191926 Mon Sep 17 00:00:00 2001 From: Umgeher Torgersen Date: Tue, 6 Dec 2022 14:27:25 +0000 Subject: [PATCH] border and text colors changed to gruvbox dark orange --- config.def.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index 8ee2335..4de278a 100644 --- a/config.def.h +++ b/config.def.h @@ -1,17 +1,17 @@ static const char *background_color = "#282828"; -static const char *border_color = "#98971a"; -static const char *font_color = "#98971a"; +static const char *border_color = "#d65d0e"; +static const char *font_color = "#d65d0e"; static const char *font_pattern = "Hack:pixelsize=12:antialias=true:autohint=true"; static const unsigned line_spacing = 5; static const unsigned int padding = 15; static const unsigned int width = 450; static const unsigned int border_size = 1; -static const unsigned int pos_x = 140; +static const unsigned int pos_x = 20; static const unsigned int pos_y = 20; enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT }; -enum corners corner = TOP_RIGHT; +enum corners corner = TOP_LEFT; static const unsigned int duration = 5; /* in seconds */ -- 2.45.2