diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-01-05 04:54:14 +0300 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2020-01-05 01:54:14 +0000 |
commit | 0cc68da04f109f66159aadc2404e232ab96bb97e (patch) | |
tree | 9d54e8accf059ce70039b29cfd7ac54836d9ce0e /alacritty.yml | |
parent | 1cfb0740bc530da3162292bbf682a234240f26a3 (diff) | |
download | alacritty-0cc68da04f109f66159aadc2404e232ab96bb97e.tar.gz alacritty-0cc68da04f109f66159aadc2404e232ab96bb97e.zip |
Add `Minimize` binding action
Fixes #2534.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/alacritty.yml b/alacritty.yml index 38303ee4..f30b5707 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -65,14 +65,14 @@ # Window title #title: Alacritty - # Window class (Linux only): + # Window class (Linux/BSD only): #class: # Application instance name #instance: Alacritty # General application class #general: Alacritty - # GTK theme variant (Linux only) + # GTK theme variant (Linux/BSD only) # # Override the variant of the GTK theme. Commonly supported values are `dark` and `light`. # Set this to `None` to use the default theme variant. @@ -107,7 +107,7 @@ # # Default: # - (macOS) Menlo - # - (Linux) monospace + # - (Linux/BSD) monospace # - (Windows) Consolas #family: monospace @@ -324,7 +324,7 @@ # # Default: # - (macOS) /bin/bash --login -# - (Linux) user login shell +# - (Linux/BSD) user login shell # - (Windows) powershell #shell: # program: /bin/bash @@ -396,7 +396,7 @@ # # Default: # - (macOS) open - # - (Linux) xdg-open + # - (Linux/BSD) xdg-open # - (Windows) explorer #launcher: # program: xdg-open @@ -482,6 +482,7 @@ # - ScrollToBottom # - ClearHistory # - Hide +# - Minimize # - Quit # - ToggleFullscreen # - SpawnNewInstance @@ -530,7 +531,7 @@ # be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for # a no-op if you do not wish to receive input characters for that binding. #key_bindings: - # (Windows/Linux only) + # (Windows, Linux, and BSD only) #- { key: V, mods: Control|Shift, action: Paste } #- { key: C, mods: Control|Shift, action: Copy } #- { key: Insert, mods: Shift, action: PasteSelection } @@ -539,6 +540,8 @@ #- { key: Add, mods: Control, action: IncreaseFontSize } #- { key: Subtract, mods: Control, action: DecreaseFontSize } #- { key: Minus, mods: Control, action: DecreaseFontSize } + + # (Windows only) #- { key: Return, mods: Alt, action: ToggleFullscreen } # (macOS only) @@ -551,6 +554,7 @@ #- { key: V, mods: Command, action: Paste } #- { key: C, mods: Command, action: Copy } #- { key: H, mods: Command, action: Hide } + #- { key: M, mods: Command, action: Minimize } #- { key: Q, mods: Command, action: Quit } #- { key: W, mods: Command, action: Quit } #- { key: F, mods: Command|Control, action: ToggleFullscreen } |