JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
config.def.h: typo in comment.
[st.git] / config.def.h
1
2 #define FONT "-*-*-medium-r-*-*-*-120-75-75-*-70-*-*"
3 #define BOLDFONT "-*-*-bold-r-*-*-*-120-75-75-*-70-*-*"
4 /* If italic is not available, fall back to bold. */
5 #define ITALICFONT "-*-*-medium-o-*-*-*-120-75-75-*-70-*-*," BOLDFONT
6 #define ITALICBOLDFONT "-*-*-bold-o-*-*-*-120-75-75-*-70-*-*," BOLDFONT
7
8 /* Space in pixels around the terminal buffer */
9 #define BORDER 2
10
11 /* Default shell to use if SHELL is not set in the env */
12 #define SHELL "/bin/sh"
13
14 /* Terminal colors (16 first used in escape sequence) */
15 static const char *colorname[] = {
16         /* 8 normal colors */
17         "black",
18         "red3",
19         "green3",
20         "yellow3",
21         "blue2",
22         "magenta3",
23         "cyan3",
24         "gray90",
25
26         /* 8 bright colors */
27         "gray50",
28         "red",
29         "green",
30         "yellow",
31         "#5c5cff",
32         "magenta",
33         "cyan",
34         "white",
35
36         [255] = 0,
37
38         /* more colors can be added after 255 to use with DefaultXX */
39         "#cccccc",
40         "#333333",
41 };
42
43 /* Default colors (colorname index)
44    foreground, background, cursor, unfocused cursor */
45 #define DefaultFG  7
46 #define DefaultBG  0
47 #define DefaultCS  256
48 #define DefaultUCS 257
49
50 /* Special keys (change & recompile st.info accordingly)
51    Keep in mind that kpress() in st.c hardcodes some keys.
52
53    Mask value:
54    * Use XK_ANY_MOD to match the key no matter modifiers state
55    * Use XK_NO_MOD to match the key alone (no modifiers)
56
57       key,        mask,  output */
58 static Key key[] = {
59         { XK_BackSpace, XK_NO_MOD, "\177" },
60         { XK_Insert,    XK_NO_MOD, "\033[2~" },
61         { XK_Delete,    XK_NO_MOD, "\033[3~" },
62         { XK_Home,      XK_NO_MOD, "\033[1~" },
63         { XK_End,       XK_NO_MOD, "\033[4~" },
64         { XK_Prior,     XK_NO_MOD, "\033[5~" },
65         { XK_Next,      XK_NO_MOD, "\033[6~" },
66         { XK_F1,        XK_NO_MOD, "\033OP"   },
67         { XK_F2,        XK_NO_MOD, "\033OQ"   },
68         { XK_F3,        XK_NO_MOD, "\033OR"   },
69         { XK_F4,        XK_NO_MOD, "\033OS"   },
70         { XK_F5,        XK_NO_MOD, "\033[15~" },
71         { XK_F6,        XK_NO_MOD, "\033[17~" },
72         { XK_F7,        XK_NO_MOD, "\033[18~" },
73         { XK_F8,        XK_NO_MOD, "\033[19~" },
74         { XK_F9,        XK_NO_MOD, "\033[20~" },
75         { XK_F10,       XK_NO_MOD, "\033[21~" },
76         { XK_F11,       XK_NO_MOD, "\033[23~" },
77         { XK_F12,       XK_NO_MOD, "\033[24~" },
78 };
79
80 /* Set TERM to this */
81 #define TNAME "st-256color"
82
83 /* Line drawing characters (sometime specific to each font...) */
84 static char gfx[] = {
85         ['f'] = 'o',
86         ['g'] = '+',
87         ['i'] = '#',
88         [255] = 0,
89 };
90
91 /* double-click timeout (in milliseconds) between clicks for selection */
92 #define DOUBLECLICK_TIMEOUT 300
93 #define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)
94
95 #define TAB 8