diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-07-30 01:51:22 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-07-30 01:51:22 +0000 |
commit | 573ed54b9a7acce90109eb7e6d61a447b1be0353 (patch) | |
tree | 26c25fbf8fc84dbfcb1bcb3888f63464fe72de37 | |
parent | df54e3526475d5ef11e795f4067c63426d0f2f5c (diff) | |
download | dotfiles-573ed54b9a7acce90109eb7e6d61a447b1be0353.tar.gz dotfiles-573ed54b9a7acce90109eb7e6d61a447b1be0353.tar.bz2 dotfiles-573ed54b9a7acce90109eb7e6d61a447b1be0353.zip |
(alacritty)~opacity to properly work
Classifies under window, set opacity there.
-rw-r--r-- | alacritty/.config/alacritty/alacritty.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index c81b9c1..e7a3595 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -78,6 +78,10 @@ window: # Set this to `None` to use the default theme variant. gtk_theme_variant: dark + # Window opacity as a floating point number from `0.0` to `1.0`. + # The value `0.0` is completely transparent and `1.0` is opaque. + opacity: 0.7 + #scrolling: # Maximum number of lines in the scrollback buffer. # Specifying '0' will disable scrolling. @@ -144,7 +148,7 @@ font: #style: Bold Italic # Point size - size: 10.0 + size: 8.0 # Offset is the extra space around each character. `offset.y` can be thought of # as modifying the line spacing, and `offset.x` as modifying the letter spacing. @@ -282,12 +286,6 @@ colors: # duration: 0 # color: '0xffffff' -# Background opacity -# -# Window opacity as a floating point number from `0.0` to `1.0`. -# The value `0.0` is completely transparent and `1.0` is opaque. -window.opacity: 0.7 - #selection: #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" |