new settings

This commit is contained in:
Umgeher Torgersen 2022-10-04 18:19:19 +00:00
parent bccd2a0a76
commit 27581edf32
2 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -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;