You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
63 lines
1.3 KiB
#define TAB 8 |
|
#define TNAME "st-256color" |
|
#define FONT "-*-*-medium-r-*-*-*-120-75-75-*-60-*-*" |
|
#define BOLDFONT "-*-*-bold-r-*-*-*-120-75-75-*-60-*-*" |
|
#define BORDER 2 |
|
#define SHELL "/bin/sh" |
|
|
|
/* Terminal colors */ |
|
static const char *colorname[] = { |
|
"black", |
|
"red3", |
|
"green3", |
|
"yellow3", |
|
"blue2", |
|
"magenta3", |
|
"cyan3", |
|
"gray90", |
|
"gray50", |
|
"red", |
|
"green", |
|
"yellow", |
|
"#5c5cff", |
|
"magenta", |
|
"cyan", |
|
"white" |
|
}; |
|
|
|
/* Default colors (colorname index) */ |
|
/* foreground, background, cursor */ |
|
#define DefaultFG 7 |
|
#define DefaultBG 0 |
|
#define DefaultCS 1 |
|
|
|
/* Special keys */ |
|
static Key key[] = { |
|
{ XK_BackSpace, "\177" }, |
|
{ XK_Insert, "\033[2~" }, |
|
{ XK_Delete, "\033[3~" }, |
|
{ XK_Home, "\033[1~" }, |
|
{ XK_End, "\033[4~" }, |
|
{ XK_Prior, "\033[5~" }, |
|
{ XK_Next, "\033[6~" }, |
|
{ XK_F1, "\033OP" }, |
|
{ XK_F2, "\033OQ" }, |
|
{ XK_F3, "\033OR" }, |
|
{ XK_F4, "\033OS" }, |
|
{ XK_F5, "\033[15~" }, |
|
{ XK_F6, "\033[17~" }, |
|
{ XK_F7, "\033[18~" }, |
|
{ XK_F8, "\033[19~" }, |
|
{ XK_F9, "\033[20~" }, |
|
{ XK_F10, "\033[21~" }, |
|
{ XK_F11, "\033[23~" }, |
|
{ XK_F12, "\033[24~" }, |
|
}; |
|
|
|
/* Line drawing characters (sometime specific to each font...) */ |
|
static char gfx[] = { |
|
['f'] = 'o', |
|
['g'] = '+', |
|
['i'] = '#', |
|
[255] = 0, |
|
};
|
|
|