diff options
author | rafa_99 <rafa99@protonmail.com> | 2020-07-03 21:12:41 +0000 |
---|---|---|
committer | rafa_99 <rafa99@protonmail.com> | 2020-07-03 21:12:41 +0000 |
commit | 3ac09e3fb843b85c75ee467466906d00e8455d55 (patch) | |
tree | bd9ada96d9472b40db9471922ff4c8e0b67a0e92 /config.def.h | |
parent | 2ff5b58218ddaa768f1c6e838f95c8eaf5357e4f (diff) |
Alpha Patch
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 6f05dce..b4fff92 100644 --- a/config.def.h +++ b/config.def.h @@ -93,6 +93,9 @@ char *termname = "st-256color"; */ unsigned int tabspaces = 8; +/* bg opacity */ +float alpha = 0.8; + /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ @@ -120,6 +123,7 @@ static const char *colorname[] = { /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", "#555555", + "black", }; @@ -128,7 +132,7 @@ static const char *colorname[] = { * foreground, background, cursor, reverse cursor */ unsigned int defaultfg = 7; -unsigned int defaultbg = 0; +unsigned int defaultbg = 258; static unsigned int defaultcs = 256; static unsigned int defaultrcs = 257; |