diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-23 20:28:57 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-03-23 20:28:57 +0100 |
| commit | dace7dca77e9539b5cb459f79c1154d11b3030fe (patch) | |
| tree | fbd3bc83e15c7b8d7e41dc351a7a50cfc0164c2f /config.h | |
first version of wlock
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; |