From 27581edf32f70e25875baf7dadc199c62d572721 Mon Sep 17 00:00:00 2001 From: Umgeher Torgersen Date: Tue, 4 Oct 2022 18:19:19 +0000 Subject: [PATCH] new settings --- Makefile | 2 +- config.def.h | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 3225e36..eb5b382 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS = -Wall -Wextra -pedantic -lX11 -lXft -I/usr/include/freetype2 -pthread +CFLAGS = -Wall -Wextra -pedantic -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lXft -I/usr/X11R6/include/freetype2 -pthread PREFIX ?= /usr/local CC ?= cc diff --git a/config.def.h b/config.def.h index 86b7e76..8ee2335 100644 --- a/config.def.h +++ b/config.def.h @@ -1,14 +1,14 @@ -static const char *background_color = "#3e3e3e"; -static const char *border_color = "#ececec"; -static const char *font_color = "#ececec"; -static const char *font_pattern = "monospace:size=10"; +static const char *background_color = "#282828"; +static const char *border_color = "#98971a"; +static const char *font_color = "#98971a"; +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 = 2; -static const unsigned int pos_x = 30; -static const unsigned int pos_y = 60; +static const unsigned int border_size = 1; +static const unsigned int pos_x = 140; +static const unsigned int pos_y = 20; enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT }; enum corners corner = TOP_RIGHT;