aboutsummaryrefslogtreecommitdiff
path: root/src/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.def.h')
-rw-r--r--src/config.def.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/config.def.h b/src/config.def.h
new file mode 100644
index 0000000..55b1cce
--- /dev/null
+++ b/src/config.def.h
@@ -0,0 +1,48 @@
+/*
+ * config.h
+ *
+ * Configuration file. Modify these to customize T.
+ */
+
+/* Minimum width/height, in characters */
+#define MIN_WIDTH 20
+#define MIN_HEIGHT 5
+
+/* Font name */
+#define FONT_NAME "Monospace 9"
+
+/* Color palette definition */
+/* PALETTE_SIZE must be 8, 16, 24 or between 25 and 255, inclusive */
+#define PALETTE_SIZE 16
+
+static const char *COLOR_PALETTE[PALETTE_SIZE] = {
+ "#000000", /* 0 Black */
+ "#a5372e", /* 1 Red */
+ "#4a663c", /* 2 Green */
+ "#7c5618", /* 3 Yellow */
+ "#566060", /* 4 Blue */
+ "#8e4948", /* 5 Magenta */
+ "#6d5b42", /* 6 Cyan */
+ "#8d8d8d", /* 7 White */
+ "#2b2b2b", /* 8 Black */
+ "#e06c5c", /* 9 Red */
+ "#7b996c", /* 10 Green */
+ "#b38849", /* 11 Yellow */
+ "#889393", /* 12 Blue */
+ "#c67c78", /* 13 Magenta */
+ "#a28d73", /* 14 Cyan */
+ "#c6c6c6", /* 15 White */
+};
+
+/* Foreground and background. */
+#define FOREGROUND_COLOR "#757575" /* COLOR_PALETTE[7] */
+#define BACKGROUND_COLOR "#151515" /* COLOR_PALETTE[0] */
+
+/* Mouse auto-hide (TRUE or FALSE) */
+#define MOUSE_AUTOHIDE TRUE
+
+/* Visible bell (TRUE or FALSE) */
+#define VISIBLE_BELL FALSE
+
+/* Audible bell (TRUE or FALSE) */
+#define AUDIBLE_BELL FALSE