aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Nazaryev <sergey@nazaryev.ru>2020-07-19 13:40:09 +0000
committerSergey Nazaryev <sergey@nazaryev.ru>2020-08-01 15:03:10 +0000
commite5468f01a5ac42e25f964ea85c00cc33d40797a7 (patch)
tree4062f89d440aa95272b20b262a52305f5925fc2f
parent19960609725f3a682d3174e4e55bc76639d9129e (diff)
downloadwterm-e5468f01a5ac42e25f964ea85c00cc33d40797a7.zip
wterm-e5468f01a5ac42e25f964ea85c00cc33d40797a7.tar.gz
wterm-e5468f01a5ac42e25f964ea85c00cc33d40797a7.tar.bz2
My personal config for wtermantialias
-rw-r--r--config.def.h47
1 files changed, 25 insertions, 22 deletions
diff --git a/config.def.h b/config.def.h
index 16b9ec1..c9b6710 100644
--- a/config.def.h
+++ b/config.def.h
@@ -5,13 +5,13 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char font[] = "Monospace:pixelsize=14:antialias=true:hinting=true:hintstyle=hintfull";
+static char font[] = "SF Mono:pixelsize=27:antialias=true:hinting=true:hintstyle=hintfull";
static int borderpx = 2;
/*
* terminal transparency
*/
-static uint8_t term_alpha = 0xaa;
+static uint8_t term_alpha = 0xff;
/*
* What program is execed by wterm depends of these precedence rules:
@@ -37,7 +37,7 @@ static float chscale = 1.0;
*
* More advanced example: " `'\"()[]{}"
*/
-static char worddelimiters[] = " ";
+static char worddelimiters[] = " '\"()[]{}";
/* selection timeouts (in milliseconds) */
static unsigned int doubleclicktimeout = 300;
@@ -78,26 +78,29 @@ static 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",
+ "#222222",
+ "#9E5641",
+ "#6C7E55",
+ "#CAAF2B",
+ "#7C9AA6",
+ "#956D9D",
+ "#4c8ea1",
+ "#808080",
/* 8 bright colors */
- "gray50",
- "red",
- "green",
- "yellow",
- "#5c5cff",
- "magenta",
- "cyan",
- "white",
+ "#454545",
+ "#CC896D",
+ "#7DB37D",
+ "#BFB556",
+ "#8FADBF",
+ "#C18FCB",
+ "#6bc1d0",
+ "#cdcdcd",
[255] = 0,
+ "#cbcbc9",
+ "#000002",
+ "#8faf9f"
/* more colors can be added after 255 to use with DefaultXX */
};
@@ -106,9 +109,9 @@ static const char *colorname[] = {
* Default colors (colorname index)
* foreground, background, cursor
*/
-static unsigned int defaultfg = 7;
-static unsigned int defaultbg = 0;
-static unsigned int defaultcs = 255;
+static unsigned int defaultfg = 256;
+static unsigned int defaultbg = 257;
+static unsigned int defaultcs = 258;
/*