aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..c01354d
--- /dev/null
+++ b/config.h
@@ -0,0 +1,39 @@
1#define SHELL "/bin/bash"
2#define TAB 8
3
4#define FONT "fixed"
5#define BORDER 3
6#define LINESPACE 1 /* additional pixel between each line */
7
8/* Terminal colors */
9static char* colorname[] = {
10 "black",
11 "red",
12 "green",
13 "yellow",
14 "blue",
15 "magenta",
16 "cyan",
17 "white",
18};
19
20/* Default colors (colorname index) */
21/* foreground, background, cursor, visual bell */
22#define DefaultFG 7
23#define DefaultBG 0
24#define DefaultCS 1
25#define BellCol DefaultFG
26
27
28/* special keys */
29static Key key[] = {
30 { XK_Delete, "\033[3~" },
31 { XK_Home, "\033[1~" },
32 { XK_End, "\033[4~" },
33 { XK_Prior, "\033[5~" },
34 { XK_Next, "\033[6~" },
35 { XK_Left, "\033[D" },
36 { XK_Right, "\033[C" },
37 { XK_Up, "\033[A" },
38 { XK_Down, "\033[B" },
39};