2 #define FONT "-*-*-medium-r-*-*-*-120-75-75-*-70-*-*"
3 #define BOLDFONT "-*-*-bold-r-*-*-*-120-75-75-*-70-*-*"
4 /* If italic is not availbel, fall back to bold. */
5 #define ITALICFONT "-*-*-medium-o-*-*-*-120-75-75-*-70-*-*," BOLDFONT
6 #define ITALICBOLDFONT "-*-*-bold-o-*-*-*-120-75-75-*-70-*-*," BOLDFONT
8 /* Space in pixels around the terminal buffer */
11 /* Default shell to use if SHELL is not set in the env */
12 #define SHELL "/bin/sh"
14 /* Terminal colors (16 first used in escape sequence) */
15 static const char *colorname[] = {
38 /* more colors can be added after 255 to use with DefaultXX */
43 /* Default colors (colorname index)
44 foreground, background, cursor, unfocused cursor */
48 #define DefaultUCS 257
50 /* Special keys (change & recompile st.info accordingly)
51 Keep in mind that kpress() in st.c hardcodes some keys.
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)
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~" },
80 /* Set TERM to this */
81 #define TNAME "st-256color"
83 /* Line drawing characters (sometime specific to each font...) */
91 /* double-click timeout (in milliseconds) between clicks for selection */
92 #define DOUBLECLICK_TIMEOUT 300
93 #define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)