blob: dc0d2584767e9ef7175a54c45ae56d0e8eb2d1ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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/Sauce Code Pro Nerd Font Complete Mono.ttf";
static unsigned cursor_width = 1;
static unsigned cursor_vertical_offset = 2;
static unsigned cursor_horizontal_offset = 1;
|