diff options
-rw-r--r-- | README.md | 16 | ||||
-rw-r--r-- | alacritty.yml | 1 | ||||
-rw-r--r-- | alacritty_macos.yml | 1 |
3 files changed, 16 insertions, 2 deletions
@@ -26,7 +26,7 @@ binaries will be provided for supported operating systems. ## Blog Posts -There is a forthcoming announcement post the week of Jan 2, 2017. +- [Announcing Alacritty, a GPU-Accelerated Terminal Emulator](http://blog.jwilm.io/announcing-alacritty/) January 6, 2017 ## Installation @@ -84,6 +84,16 @@ missing, please open an issue. dnf install freetype-devel fontconfig-devel xclip ``` +##### openSUSE + +On openSUSE, you need a few extra libraries to build Alacritty. Here's +a `zypper` command that should install all of them. If something is +still found to be missing, please open an issue. + +```sh +zypper install freetype-devel fontconfig-devel xclip +``` + ##### Other If you build Alacritty on another Linux distribution, we would love some help @@ -149,7 +159,9 @@ Just Works. disappears. Actual throughput and rendering performance are still better in Alacritty. - _Is wayland supported?_ Not yet. Alacritty is currently on a fork of glutin - that needs some updates to work with Wayland. + that needs some updates to work with Wayland. To stop glutin from detecting + Wayland (e.g. for use on XWayland) launch Alacritty like this: + `env WAYLAND_DISPLAY= alacritty` - _When will Windows support be available?_ When someone has time to work on it. Contributors would be welcomed :). - _My arrow keys don't work_ It sounds like you deleted some key bindings from diff --git a/alacritty.yml b/alacritty.yml index 0d907ea0..abbb275f 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -158,6 +158,7 @@ key_bindings: - { key: Down, mods: Alt, chars: "\x1b[1;3B" } - { key: Down, chars: "\x1b[B", mode: ~AppCursor } - { key: Down, chars: "\x1bOB", mode: AppCursor } + - { key: Tab, mods: Shift, chars: "\x1b[Z" } - { key: F1, chars: "\x1bOP" } - { key: F2, chars: "\x1bOQ" } - { key: F3, chars: "\x1bOR" } diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 25dbb1b2..add0c5dd 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -158,6 +158,7 @@ key_bindings: - { key: Down, mods: Alt, chars: "\x1b[1;3B" } - { key: Down, chars: "\x1b[B", mode: ~AppCursor } - { key: Down, chars: "\x1bOB", mode: AppCursor } + - { key: Tab, mods: Shift, chars: "\x1b[Z" } - { key: F1, chars: "\x1bOP" } - { key: F2, chars: "\x1bOQ" } - { key: F3, chars: "\x1bOR" } |