summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob <rjl6789@hotmail.co.uk>2019-03-31 18:51:31 +0100
committerRob <rjl6789@hotmail.co.uk>2019-03-31 18:51:31 +0100
commit502c57de2fe8e0317edfb27240efc55a0800c137 (patch)
treed828e4845eecdfb9c0f3a1e8349e4c52774be4d6
parentcd4a194063323227a8f745ec9d32657b5016602a (diff)
change bg and fg colors to 256 257 respectivly
-rw-r--r--config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/config.h b/config.h
index 53ce8fb..6e2f2ac 100644
--- a/config.h
+++ b/config.h
@@ -5,8 +5,9 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "mono:pixelsize=16:antialias=true:autohint=true";
-static int borderpx = 2;
+//static char *font = "monospace:pixelsize=28:antialias=true:autohint=true:dpi=168";
+static char *font = "mono:pixelsize=28:antialias=true:autohint=false:hinting=false:hintstyle=2:dpi=168";
+static int borderpx = 4;
/*
* What program is execed by st depends of these precedence rules:
@@ -113,8 +114,8 @@ static const char *colorname[] = {
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
-unsigned int defaultfg = 15;
-unsigned int defaultbg = 0;
+unsigned int defaultfg = 257;
+unsigned int defaultbg = 256;
static unsigned int defaultcs = 15;
static unsigned int defaultrcs = 0;