feat: adjust alacritty & kitty for macOS

This commit is contained in:
Ryan Yin
2023-07-31 10:32:56 +08:00
parent 26da19ba38
commit 66fa46afb6
2 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@
# #
# Window opacity as a floating point number from `0.0` to `1.0`. # 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. # The value `0.0` is completely transparent and `1.0` is opaque.
opacity: 0.95 opacity: 0.93
# Startup Mode (changes require restart) # Startup Mode (changes require restart)
# #
@@ -46,7 +46,7 @@
# #
# Values for `startup_mode` (macOS only): # Values for `startup_mode` (macOS only):
# - SimpleFullscreen # - SimpleFullscreen
startup_mode: Windowed startup_mode: Maximized
# Allow terminal applications to change Alacritty's window title. # Allow terminal applications to change Alacritty's window title.
dynamic_title: true dynamic_title: true

View File

@@ -39,7 +39,7 @@
settings = settings =
{ {
background_opacity = "0.95"; background_opacity = "0.93";
macos_option_as_alt = true; # Option key acts as Alt on macOS macos_option_as_alt = true; # Option key acts as Alt on macOS
scrollback_lines = 10000; scrollback_lines = 10000;
enable_audio_bell = false; enable_audio_bell = false;
@@ -54,6 +54,6 @@
); );
# macOS specific settings # macOS specific settings
darwinLaunchOptions = ["--start-as=fullscreen"]; darwinLaunchOptions = ["--start-as=maximized"];
}; };
} }