new settings
This commit is contained in:
parent
bccd2a0a76
commit
27581edf32
2 changed files with 8 additions and 8 deletions
2
Makefile
2
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
|
PREFIX ?= /usr/local
|
||||||
CC ?= cc
|
CC ?= cc
|
||||||
|
|
14
config.def.h
14
config.def.h
|
@ -1,14 +1,14 @@
|
||||||
static const char *background_color = "#3e3e3e";
|
static const char *background_color = "#282828";
|
||||||
static const char *border_color = "#ececec";
|
static const char *border_color = "#98971a";
|
||||||
static const char *font_color = "#ececec";
|
static const char *font_color = "#98971a";
|
||||||
static const char *font_pattern = "monospace:size=10";
|
static const char *font_pattern = "Hack:pixelsize=12:antialias=true:autohint=true";
|
||||||
static const unsigned line_spacing = 5;
|
static const unsigned line_spacing = 5;
|
||||||
static const unsigned int padding = 15;
|
static const unsigned int padding = 15;
|
||||||
|
|
||||||
static const unsigned int width = 450;
|
static const unsigned int width = 450;
|
||||||
static const unsigned int border_size = 2;
|
static const unsigned int border_size = 1;
|
||||||
static const unsigned int pos_x = 30;
|
static const unsigned int pos_x = 140;
|
||||||
static const unsigned int pos_y = 60;
|
static const unsigned int pos_y = 20;
|
||||||
|
|
||||||
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
|
enum corners { TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT };
|
||||||
enum corners corner = TOP_RIGHT;
|
enum corners corner = TOP_RIGHT;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue