diff options
| author | Matt Hunter <m@lfurio.us> | 2026-01-17 19:45:32 -0500 |
|---|---|---|
| committer | Matt Hunter <m@lfurio.us> | 2026-01-17 19:53:32 -0500 |
| commit | 9982f3cf8ddf30104b0e73f817ce8c820049af5a (patch) | |
| tree | ff7b25a782e4049ec80fd99f14f6df4f60e291f0 /config.def.h | |
| parent | 971367247bf92179016edb57671a2397c851b40b (diff) | |
| download | st-9982f3cf8ddf30104b0e73f817ce8c820049af5a.tar.gz st-9982f3cf8ddf30104b0e73f817ce8c820049af5a.zip | |
patch: alpha
This patch allows users to change the opacity of the background. Note
that you need an X composite manager (e.g. compton, xcompmgr) to make
this patch effective.
The alpha value affects the default background only. The color
designated by 'defaultbg' should not be used elsewhere. Embedding might
fail after applying this patch.
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index b962afb..adfcb77 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 */ |
