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