st/char.h

40 lines
949 B
C
Raw Normal View History

/* This header contains options most people probably don't want to change
*
* It is therefore hidden to keep the configuration file easy and clean to read.
*/
char *utmp = NULL;
char *scroll = NULL;
char *vtiden = "\033[?6c";
/* More advanced example: L" `'\"()[]{}" */
wchar_t *worddelimiters = L" ";
static uint selmasks[] = { [SEL_RECTANGULAR] = Mod1Mask };
static char ascii_printable[] = {
" !\"#$%&'()*+,-./0123456789:;<=>?"
"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
"`abcdefghijklmnopqrstuvwxyz{|}~"
};
2022-08-18 22:13:58 +02:00
static char *colorname[] = {
col_1, /* black */
col_2, /* red3 */
col_3, /* green3 */
col_4, /* yellow3 */
col_5, /* blue2 */
col_6, /* magenta3 */
col_7, /* cyan3 */
col_8, /* gray90 */
col_9, /* gray50 */
col_10, /* red */
col_11, /* green */
col_12, /* yellow */
col_13, /* #5c5cff */
col_14, /* magenta */
col_15, /* cyan */
col_16, /* white */
[255] = 0,
"#cccccc",
"#555555",
"#c0c5ce",
"#696969",
};