Xinqi Bao's Git

67b1316d623d9af12799925538c4af9250792154
[st.git] / config.def.h
1
2 /*
3 * Do not include the »pixelsize« parameter in your font definition. It is
4 * used to calculate zooming.
5 */
6 #define FONT "Liberation Mono:pixelsize=12:antialias=false:autohint=false"
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 /* Internal shortcuts. */
81 #define MODKEY Mod1Mask
82
83 static Shortcut shortcuts[] = {
84 /* modifier key function argument */
85 { MODKEY|ShiftMask, XK_Prior, xzoom, {.i = +1} },
86 { MODKEY|ShiftMask, XK_Next, xzoom, {.i = -1} },
87 };
88
89 /* Set TERM to this */
90 #define TNAME "st-256color"
91
92 /* double-click timeout (in milliseconds) between clicks for selection */
93 #define DOUBLECLICK_TIMEOUT 300
94 #define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)
95
96 #define TAB 8
97