summaryrefslogtreecommitdiff
path: root/config.h
blob: 5e38429f0028706fe4e8bd17854e5d4d2028f494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdint.h>

/* colors in argb */
static uint32_t background = 0xff282828;
static uint32_t foreground = 0xffebdbb2;
static uint32_t highlight  = 0xffb16286;

static unsigned lines = 20;
static unsigned padding = 10;
static unsigned borderwidth = 2;
static unsigned fontsize = 11;
static char fontpath[] = "/usr/share/fonts/TTF/SauceCodeProNerdFont-Regular.ttf";

static unsigned cursor_width = 1;
static unsigned cursor_vertical_offset = 2;
static unsigned cursor_horizontal_offset = 1;

static unsigned monitor_offset = 1;