JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
we definately need pixmaps for the drawing, currently drawing into the window is...
[st.git] / config.h
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 */
9 static const 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 */
29 static const char *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 };