diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-21 21:17:17 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-21 21:17:17 +0100 |
| commit | c0a7c5ddcb9e0e98f6d981448e7c54fab6621327 (patch) | |
| tree | d0307493efe92924ad267f6a0c5efb0fc1e16bc3 /config.h | |
first sketch
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; |