2 #define FONT "-*-*-medium-r-*-*-*-120-75-75-*-60-*-*"
3 #define BOLDFONT "-*-*-bold-r-*-*-*-120-75-75-*-60-*-*"
5 /* Space in pixels around the terminal buffer */
8 /* Default shell to use if SHELL is not set in the env */
9 #define SHELL "/bin/sh"
11 /* Terminal colors (16 first used in escape sequence) */
12 static const char *colorname[] = {
35 /* more colors can be added after 255 to use with DefaultXX */
40 /* Default colors (colorname index)
41 foreground, background, cursor, unfocused cursor */
45 #define DefaultUCS 257
47 /* Special keys (change & recompile st.info accordingly)
48 Keep in mind that kpress() in st.c hardcodes some keys.
51 * Use XK_ANY_MOD to match the key no matter modifiers state
52 * Use XK_NO_MOD to match the key alone (no modifiers)
56 { XK_BackSpace, XK_NO_MOD, "\177" },
57 { XK_Insert, XK_NO_MOD, "\033[2~" },
58 { XK_Delete, XK_NO_MOD, "\033[3~" },
59 { XK_Home, XK_NO_MOD, "\033[1~" },
60 { XK_End, XK_NO_MOD, "\033[4~" },
61 { XK_Prior, XK_NO_MOD, "\033[5~" },
62 { XK_Next, XK_NO_MOD, "\033[6~" },
63 { XK_F1, XK_NO_MOD, "\033OP" },
64 { XK_F2, XK_NO_MOD, "\033OQ" },
65 { XK_F3, XK_NO_MOD, "\033OR" },
66 { XK_F4, XK_NO_MOD, "\033OS" },
67 { XK_F5, XK_NO_MOD, "\033[15~" },
68 { XK_F6, XK_NO_MOD, "\033[17~" },
69 { XK_F7, XK_NO_MOD, "\033[18~" },
70 { XK_F8, XK_NO_MOD, "\033[19~" },
71 { XK_F9, XK_NO_MOD, "\033[20~" },
72 { XK_F10, XK_NO_MOD, "\033[21~" },
73 { XK_F11, XK_NO_MOD, "\033[23~" },
74 { XK_F12, XK_NO_MOD, "\033[24~" },
77 /* Set TERM to this */
78 #define TNAME "st-256color"
80 /* Line drawing characters (sometime specific to each font...) */
88 /* double-click timeout (in milliseconds) between clicks for selection */
89 #define DOUBLECLICK_TIMEOUT 300
90 #define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)