diff options
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..dc0d258 --- /dev/null +++ b/config.h @@ -0,0 +1,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; |