From 9b0126bab0a35159d421e73412c930b646651346 Mon Sep 17 00:00:00 2001 From: Federico I Date: Sat, 21 Mar 2020 13:15:29 +0000 Subject: Apply Alpha patch Patch Homepage: https://st.suckless.org/patches/alpha/ Patch Link: https://st.suckless.org/patches/alpha/st-alpha-0.8.2.diff Additional notes: patch applied manually --- config.def.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 546edda..85a1d17 100644 --- a/config.def.h +++ b/config.def.h @@ -82,6 +82,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 */ @@ -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 = 258; static unsigned int defaultcs = 256; static unsigned int defaultrcs = 257; -- cgit v1.2.3