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_macos.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_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 7834cc78..9c911e26 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -28,8 +28,14 @@ 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 title bar and title bar buttons + # - `none`: Window without title bar, rounded corners, or drop shadow + # - `transparent`: Window with title bar with transparent background and title + # bar buttons + # - `buttonless`: Window with title bar with transparent background and no + # title bar buttons + decorations: full scrolling: # How many lines of scrollback to keep, |