diff options
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..d17810a --- /dev/null +++ b/config.h @@ -0,0 +1,12 @@ +#include <stdint.h> + +static const char user[] = "nobody"; +static const char group[] = "nogroup"; + +static uint32_t background = 0xff282828; +static uint32_t foreground = 0xffebdbb2; +static uint32_t inputbar = 0xffb16286; + +static char fontpath[] = "/usr/share/fonts/TTF/Sauce Code Pro Nerd Font Complete Mono.ttf"; +static unsigned username_fontsize = 30; +static unsigned clock_fontsize = 50; |