minor improvements

master
an 2019-08-08 19:43:22 -04:00
parent 3142233603
commit 80b21fcff8
1 changed files with 10 additions and 6 deletions

View File

@ -5,7 +5,11 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "Go Mono:pixelsize=13:style=regular:antialias=true:autohint=true";
static char *font = "Go Mono:"
"pixelsize=14:"
"style=regular:"
"antialias=true:"
"autohint=true";
static int borderpx = 0;
/*
@ -42,8 +46,8 @@ static unsigned int tripleclicktimeout = 600;
int allowaltscreen = 0;
/* frames per second st should at maximum draw to the screen */
static unsigned int xfps = 120;
static unsigned int actionfps = 60;
static unsigned int xfps = 240;
static unsigned int actionfps = 120;
/*
* blinking timeout (set to 0 to disable blinking) for the terminal blinking
@ -62,11 +66,11 @@ 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;
const int boxdraw_braille = 1;
/*
* bell volume. It must be a value between -100 and 100. Use 0 for disabling