update configuration

This commit is contained in:
Ray Elliott 2020-02-25 22:45:34 +00:00
parent e409bca965
commit fa2a8ee365
1 changed files with 28 additions and 28 deletions

View File

@ -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;
@ -85,30 +85,30 @@ 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 */ /* 8 bright colors */
"gray50", [8] = "#1a4519", /* black */
"red", [9] = "#ff0000", /* red */
"green", [10] = "#55ff55", /* green */
"yellow", [11] = "#9edd9e", /* yellow */
"#5c5cff", [12] = "#73ff55", /* blue */
"magenta", [13] = "#43ab43", /* magenta */
"cyan", [14] = "#85af85", /* cyan */
"white", [15] = "#d8ffd8", /* white */
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc", [256] = "#141414", /* background */
"#555555", [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