summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrjl6789 <rob.livesey@gmail.com>2019-05-09 07:42:21 +0100
committerrjl6789 <rob.livesey@gmail.com>2019-05-09 07:42:21 +0100
commite0005c695e339c08bda2910b36efe026489adab1 (patch)
tree358c2e00929ade77130f9723f705174d9e38e27c
parent9aa7f38187cf6ff15ec1a11fc83e8d43e1b1a6d5 (diff)
corrected colorname declaration
-rw-r--r--config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h
index d691716..6f1b85a 100644
--- a/config.h
+++ b/config.h
@@ -5,9 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-//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;
+static char *font = "mono:pixelsize=16:antialias=true:autohint=true";
+static int borderpx = 2;
/*
* What program is execed by st depends of these precedence rules:
@@ -108,6 +107,7 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
"black", /* 256 -> bg */
"white", /* 257 -> fg */
+ "#add8e6", /* 258 -> cursor */
};