diff options
author | rafa_99 <rafa99@protonmail.com> | 2020-01-15 19:42:28 +0000 |
---|---|---|
committer | rafa_99 <rafa99@protonmail.com> | 2020-01-15 19:42:28 +0000 |
commit | d4fd76ef173c847368bb56f77ef1e03ba03f898a (patch) | |
tree | 59a22cd203f43cda311dc8aa0d930f7a7fd61473 /config.def.h | |
parent | 76e6735c9521827d5fc468ff6506dfa83ef78e09 (diff) |
Added Transparency
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 97549b5..0e218e9 100644 --- a/config.def.h +++ b/config.def.h @@ -94,6 +94,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 */ @@ -121,6 +124,7 @@ static const char *colorname[] = { /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", "#555555", + "black", }; @@ -129,7 +133,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; |