aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 9789caa..3881eed 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,6 +1,26 @@
#ifndef _RUNES_CONFIG_H
#define _RUNES_CONFIG_H
+struct runes_config {
+ cairo_pattern_t *mousecursorcolor;
+ cairo_pattern_t *cursorcolor;
+
+ cairo_pattern_t *fgdefault;
+ cairo_pattern_t *bgdefault;
+ cairo_pattern_t *colors[256];
+
+ int default_rows;
+ int default_cols;
+
+ char *cmd;
+ char *font_name;
+
+ char bell_is_urgent;
+ char bold_is_bright;
+ char bold_is_bold;
+ char audible_bell;
+};
+
void runes_config_init(RunesTerm *t, int argc, char *argv[]);
void runes_config_cleanup(RunesTerm *t);