mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 03:20:26 +10:00
30 lines
730 B
Plaintext
30 lines
730 B
Plaintext
--- config.def.h
|
|
+++ config.def.h
|
|
@@ -82,6 +82,9 @@ char *termname = "st-256color";
|
|
*/
|
|
unsigned int tabspaces = 8;
|
|
|
|
+/* bg opacity */
|
|
+unsigned int alpha = 0xcc;
|
|
+
|
|
/* Terminal colors (16 first used in escape sequence) */
|
|
static const char *colorname[] = {
|
|
/* 8 normal colors */
|
|
@@ -109,6 +112,7 @@ static const char *colorname[] = {
|
|
/* more colors can be added after 255 to use with DefaultXX */
|
|
"#cccccc",
|
|
"#555555",
|
|
+ "black",
|
|
};
|
|
|
|
|
|
@@ -117,7 +121,7 @@ static const char *colorname[] = {
|
|
* foreground, background, cursor, reverse cursor
|
|
*/
|
|
unsigned int defaultfg = 7;
|
|
-unsigned int defaultbg = 0;
|
|
+unsigned int defaultbg = 257;
|
|
static unsigned int defaultcs = 256;
|
|
static unsigned int defaultrcs = 257;
|
|
|