update configuration
This commit is contained in:
parent
e409bca965
commit
fa2a8ee365
56
config.h
56
config.h
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
|
static char *font = "xos4 terminus:style=semibold:size=12:antialias=false";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -32,7 +32,7 @@ static float chscale = 1.0;
|
||||||
*
|
*
|
||||||
* More advanced example: L" `'\"()[]{}"
|
* More advanced example: L" `'\"()[]{}"
|
||||||
*/
|
*/
|
||||||
wchar_t *worddelimiters = L" ";
|
wchar_t *worddelimiters = L" `'\"()[]{}";
|
||||||
|
|
||||||
/* selection timeouts (in milliseconds) */
|
/* selection timeouts (in milliseconds) */
|
||||||
static unsigned int doubleclicktimeout = 300;
|
static unsigned int doubleclicktimeout = 300;
|
||||||
|
@ -84,31 +84,31 @@ unsigned int tabspaces = 8;
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
/* 8 normal colors */
|
/* 8 normal colors */
|
||||||
"black",
|
[0] = "#000000", /* black */
|
||||||
"red3",
|
[1] = "#aa2e2e", /* red */
|
||||||
"green3",
|
[2] = "#36a136", /* green */
|
||||||
"yellow3",
|
[3] = "#75ab75", /* yellow */
|
||||||
"blue2",
|
[4] = "#53cc00", /* blue */
|
||||||
"magenta3",
|
[5] = "#237923", /* magenta */
|
||||||
"cyan3",
|
[6] = "#669566", /* cyan */
|
||||||
"gray90",
|
[7] = "#717171", /* white */
|
||||||
|
|
||||||
/* 8 bright colors */
|
|
||||||
"gray50",
|
|
||||||
"red",
|
|
||||||
"green",
|
|
||||||
"yellow",
|
|
||||||
"#5c5cff",
|
|
||||||
"magenta",
|
|
||||||
"cyan",
|
|
||||||
"white",
|
|
||||||
|
|
||||||
|
/* 8 bright colors */
|
||||||
|
[8] = "#1a4519", /* black */
|
||||||
|
[9] = "#ff0000", /* red */
|
||||||
|
[10] = "#55ff55", /* green */
|
||||||
|
[11] = "#9edd9e", /* yellow */
|
||||||
|
[12] = "#73ff55", /* blue */
|
||||||
|
[13] = "#43ab43", /* magenta */
|
||||||
|
[14] = "#85af85", /* cyan */
|
||||||
|
[15] = "#d8ffd8", /* white */
|
||||||
[255] = 0,
|
[255] = 0,
|
||||||
|
|
||||||
/* more colors can be added after 255 to use with DefaultXX */
|
|
||||||
"#cccccc",
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
"#555555",
|
[256] = "#141414", /* background */
|
||||||
|
[257] = "#00cc00", /* foreground */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -116,10 +116,10 @@ static const char *colorname[] = {
|
||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 7;
|
unsigned int defaultfg = 257;
|
||||||
unsigned int defaultbg = 0;
|
unsigned int defaultbg = 256;
|
||||||
static unsigned int defaultcs = 256;
|
static unsigned int defaultcs = 12;
|
||||||
static unsigned int defaultrcs = 257;
|
static unsigned int defaultrcs = 256;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default shape of cursor
|
* Default shape of cursor
|
||||||
|
|
Loading…
Reference in New Issue