diff options
author | tsxv478 <vt0451@yandex.ru> | 2022-07-22 03:27:33 +0300 |
---|---|---|
committer | tsxv478 <vt0451@yandex.ru> | 2022-07-22 03:27:33 +0300 |
commit | 1a08c7e7df1389501ae4debbc9851543b7fab708 (patch) | |
tree | 3fb905e15160d4e07326dc16f21b2cd7ed832d98 | |
parent | 980c69eed5c59fd66d782f5be08e5fa206ad431b (diff) |
default configuration in config.def.h
-rw-r--r-- | config.def.h | 58 |
1 files changed, 27 insertions, 31 deletions
diff --git a/config.def.h b/config.def.h index d49cc2a..f0c9989 100644 --- a/config.def.h +++ b/config.def.h @@ -5,12 +5,8 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; -/* Spare fonts */ -static char *font2[] = { -/* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */ -/* "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */ -}; +static char *font = "monospace:size=9:antialias=true:autohint=true"; +static char *font2[] = { "joypixels:pixelsize=12:antialias=true:autohint=true" }; static int borderpx = 2; @@ -66,7 +62,7 @@ static double maxlatency = 33; * blinking timeout (set to 0 to disable blinking) for the terminal blinking * attribute. */ -static unsigned int blinktimeout = 800; +static unsigned int blinktimeout = 250; /* * thickness of underline and bar cursors @@ -79,8 +75,8 @@ static unsigned int cursorthickness = 2; * Bold affects lines thickness if boxdraw_bold is not 0. Italic is ignored. * 0: disable (render all U25XX glyphs normally from the font). */ -const int boxdraw = 0; -const int boxdraw_bold = 0; +const int boxdraw = 1; +const int boxdraw_bold = 1; /* braille (U28XX): 1: render as adjacent "pixels", 0: use font */ const int boxdraw_braille = 0; @@ -114,24 +110,24 @@ unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + "#1d2021", + "#cc241d", + "#98971a", + "#d79921", + "#458588", + "#b16286", + "#689d6a", + "#a89984", /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#928374", + "#fb4934", + "#b8bb26", + "#fabd2f", + "#83a598", + "#d3869b", + "#8ec07c", + "#ebdbb2", [255] = 0, @@ -147,9 +143,9 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 258; -unsigned int defaultbg = 259; -unsigned int defaultcs = 256; +unsigned int defaultfg = 15; +unsigned int defaultbg = 0; +unsigned int defaultcs = 12; static unsigned int defaultrcs = 257; /* @@ -172,13 +168,13 @@ static Rune stcursor = 0x2603; /* snowman ("☃") */ * Default columns and rows numbers */ -static unsigned int cols = 80; -static unsigned int rows = 24; +static unsigned int cols = 100; +static unsigned int rows = 25; /* * Default colour and shape of the mouse cursor */ -static unsigned int mouseshape = XC_xterm; +static unsigned int mouseshape = XC_left_ptr; static unsigned int mousefg = 7; static unsigned int mousebg = 0; |