diff options
author | zachir <zachir@librem.one> | 2023-02-20 05:40:46 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-02-20 05:40:46 -0600 |
commit | 5d2b73cefa35cfeca48f2813fb0a5bcab866572c (patch) | |
tree | 51fabbea94d70e54eaa9e208d69da59f0fe14a08 /config.def.h | |
parent | 212fcf41303d3f27cee726dfa6660aaab78f257e (diff) |
add my configs to config.def.h0.9
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/config.def.h b/config.def.h index 4215107..bdfb540 100644 --- a/config.def.h +++ b/config.def.h @@ -21,7 +21,7 @@ float winmovethreshold = 0.6; * borderperc: percentage of cell width to use as a border * 0 = no border, 100 = border width is same as cell width */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; +static char *font = "mononoki Nerd Font Mono:pixelsize=12:antialias=true:autohint=true"; /* Spare fonts */ static char *font2[] = { /* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */ @@ -31,7 +31,7 @@ static char *font2[] = { static int borderperc = 2; -static int center_text = 0; +static int center_text = 1; /* * What program is execed by st depends of these precedence rules: @@ -73,7 +73,7 @@ int allowaltscreen = 1; /* allow certain non-interactive (insecure) window operations such as: setting the clipboard text */ -int allowwindowops = 0; +int allowwindowops = 1; /* * draw latency range in ms - from new content/keypress/etc until drawing. @@ -137,10 +137,10 @@ char *termname = "st-256color"; * * stty tabs */ -unsigned int tabspaces = 8; +unsigned int tabspaces = 2; /* bg opacity */ -float alpha = 0.8, alphaUnfocused = 0.6; +float alpha = 0.8, alphaUnfocused = 0.7; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { @@ -182,7 +182,7 @@ unsigned int defaultfg = 258; unsigned int defaultbg = 0; //259 unsigned int defaultcs = 256; static unsigned int defaultrcs = 257; -unsigned int bg = 17, bgUnfocused = 16; +unsigned int bg = 259, bgUnfocused = 259; /* * Default shape of cursor @@ -241,7 +241,7 @@ ResourcePref resources[] = { { "color13", STRING, &colorname[13] }, { "color14", STRING, &colorname[14] }, { "color15", STRING, &colorname[15] }, - { "background", STRING, &colorname[256] }, + { "background", STRING, &colorname[259] }, { "foreground", STRING, &colorname[257] }, { "cursorColor", STRING, &colorname[258] }, { "termname", STRING, &termname }, @@ -572,14 +572,14 @@ static char ascii_printable[] = * Curly: Dunno how to draw it *shrug* * _ _ _ _ * ( ) ( ) ( ) ( ) - * (_) (_) (_) (_) + * (_) (_) (_) (_) * * Spiky: * /\ /\ /\ /\ * \/ \/ \/ * * Capped: - * _ _ _ + * _ _ _ * / \ / \ / \ * \_/ \_/ */ @@ -588,4 +588,4 @@ static char ascii_printable[] = #define UNDERCURL_SPIKY 1 #define UNDERCURL_CAPPED 2 // Active style -#define UNDERCURL_STYLE UNDERCURL_SPIKY +#define UNDERCURL_STYLE UNDERCURL_CURLY |