summaryrefslogtreecommitdiffstats
path: root/alacritty.yml
diff options
context:
space:
mode:
authoracheronfail <acheronfail@gmail.com>2019-04-24 05:05:47 +1000
committerChristian Duerr <chrisduerr@users.noreply.github.com>2019-04-23 19:05:47 +0000
commite9813031f6e308984cb5547aa1049839cb75745f (patch)
treec8e6286c98f4f42b6e170e477baa6b1f949b83ef /alacritty.yml
parentb0efa9d105b53211d8df094238c7eb8324e93566 (diff)
Add fullscreen support
Fixes #34. Fixes #2012.
Diffstat (limited to 'alacritty.yml')
-rw-r--r--alacritty.yml22
1 files changed, 17 insertions, 5 deletions
diff --git a/alacritty.yml b/alacritty.yml
index ea398745..beb290cf 100644
--- a/alacritty.yml
+++ b/alacritty.yml
@@ -51,8 +51,16 @@ window:
# - buttonless: Title bar, transparent background, but no title bar buttons
decorations: full
- # When true, alacritty starts maximized.
- start_maximized: false
+ # Startup Mode (changes require restart)
+ #
+ # Values for `startup_mode`:
+ # - Windowed
+ # - Maximized
+ # - Fullscreen
+ #
+ # Values for `startup_mode` (macOS only):
+ # - SimpleFullscreen
+ startup_mode: Windowed
scrolling:
# Maximum number of lines in the scrollback buffer.
@@ -184,11 +192,11 @@ colors:
#cursor:
# text: '0x000000'
# cursor: '0xffffff'
-
+
# Selection colors
#
- # Colors which should be used to draw the selection area. If selection
- # background is unset, selection color will be the inverse of the cell colors.
+ # Colors which should be used to draw the selection area. If selection
+ # background is unset, selection color will be the inverse of the cell colors.
# If only text is unset the cell text color will remain the same.
#selection:
# text: '0xeaeaea'
@@ -449,8 +457,12 @@ alt_send_esc: true
# - Quit
# - ClearLogNotice
# - SpawnNewInstance
+# - ToggleFullscreen
# - None
#
+# Values for `action` (macOS only):
+# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space
+#
# Values for `command`:
# The `command` field must be a map containing a `program` string and
# an `args` array of command line parameter strings.