aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-03-20 15:21:21 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2023-03-20 15:21:21 +0100
commit05e97f8346521b50fbedcc2e7d0679e297d4d98b (patch)
tree6f0a909ffd1c5bcf5e1b95fa7ae61d721826e7db /config.def.h
make first sketch of bar using freetype2 instead of cairo
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
new file mode 100644
index 0000000..edfc824
--- /dev/null
+++ b/config.def.h
@@ -0,0 +1,11 @@
+#include <stdint.h>
+
+/* The colors are in ARGB format */
+static uint32_t background = 0xff282828;
+static uint32_t foreground = 0xffffffff;
+static uint32_t highlight = 0xffb16286;
+
+static uint32_t height = 30;
+static uint32_t padding = 10;
+static const char *fontpath = "/usr/share/fonts/TTF/Sauce Code Pro Nerd Font Complete Mono.ttf";
+static const char *statusfile = "/tmp/statusline";