diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-03-24 16:14:07 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-03-24 16:14:07 -0400 |
| commit | 70f1040dc7afc9c8d11029e198a84935487b5033 (patch) | |
| tree | 12ee3335b0abd909997c9c8c3033574e884d79b3 /config.def.h | |
| parent | c5ba9c025b7ebc34979e839453528f6e4a18712d (diff) | |
| download | st-70f1040dc7afc9c8d11029e198a84935487b5033.tar.gz st-70f1040dc7afc9c8d11029e198a84935487b5033.tar.xz | |
Disable bold fonts by default, look like xterm by default, use a sane font by default, and install to my home directory
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 82b1b09..dde8469 100644 --- a/config.def.h +++ b/config.def.h @@ -5,8 +5,17 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; -static int borderpx = 2; +// static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; +// static char *font = "Profont:pixelsize=15:antialias=false:autohint=false"; +static char *font = "ProggyTinyTTSZ:pixelsize=16:antialias=false:autohint=false"; +static int borderpx = 1; + +/* + * Disable bold shit by default because it doesn't work well with small fonts + */ +int disablebold = 1; +int disableitalic = 1; +int disableroman = 1; /* * What program is execed by st depends of these precedence rules: @@ -63,7 +72,7 @@ static unsigned int cursorthickness = 2; static int bellvolume = 0; /* default TERM value */ -char *termname = "st-256color"; +char *termname = "xterm-256color"; /* * spaces per tab |
