diff options
author | Joe Moon <joe@xoxomoon.com> | 2018-09-20 08:24:26 -0700 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-09-20 08:24:26 -0700 |
commit | 3b46859eceea39afb8bbc760235cc15de78d3ff3 (patch) | |
tree | f17d8b715a9ebb50dac94069f9647c5f09b34840 /alacritty.yml | |
parent | 641f3291eb918afdc513daa89dbcabfcc202e077 (diff) | |
download | alacritty-3b46859eceea39afb8bbc760235cc15de78d3ff3.tar.gz alacritty-3b46859eceea39afb8bbc760235cc15de78d3ff3.zip |
Improve window.decorations options: (#1241)
The decorations config was changed from a bool to an enum.
`full` has taken the place of `true`, and `none`, has replaced `false`.
On macOS, there are now options for `transparent` and `buttonless`.
These options are explained in both the CHANGELOG and in the
configuration files.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/alacritty.yml b/alacritty.yml index a0225f56..49a33737 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -30,8 +30,10 @@ window: y: 2 # Window decorations - # Setting this to false will result in window without borders and title bar. - decorations: true + # Available values: + # - `full`: Window with borders and title bar. + # - `none`: Window without borders or title bar. + decorations: full scrolling: # How many lines of scrollback to keep, |