diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2025-12-25 08:49:04 -0300 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2025-12-25 08:49:04 -0300 |
| commit | a7f693972039dbb5a05bef0b7bb5e1dc3dffadd4 (patch) | |
| tree | bfd1e256603fd21e2abc2cbd854db984d9025727 | |
| parent | a0e40b26d77a2c67722fb9cafd2e23799db114c3 (diff) | |
| download | xsession-a7f693972039dbb5a05bef0b7bb5e1dc3dffadd4.tar.gz xsession-a7f693972039dbb5a05bef0b7bb5e1dc3dffadd4.tar.bz2 | |
Feat: alacritty: minor improvements
| -rw-r--r-- | config.dot/alacritty/alacritty.toml.link | 7 | ||||
| -rw-r--r-- | config.dot/alacritty/alacritty.yml.link | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/config.dot/alacritty/alacritty.toml.link b/config.dot/alacritty/alacritty.toml.link index d93dcc3..a265a60 100644 --- a/config.dot/alacritty/alacritty.toml.link +++ b/config.dot/alacritty/alacritty.toml.link @@ -38,7 +38,8 @@ cyan = "#93e0e3" white = "#ffffff" [window] -title = "terminal" +title = "terminal" +#decorations = "None" # Key bindings translates what is typed in the application to what is actually # _emulated_ by the application. @@ -66,7 +67,9 @@ bindings = [ # The escape sequence for the Home key is 1b 5b 37 7e (we exclude the last # 0a since this is the Enter key code). # - # This sequence is then converted to terminal escape codes: \x1b\x5b\x38\x7e + # This sequence is then converted to terminal escape codes, but since + # recent alacritty does not support sequences like \x1b\x5b\x38\x7e, + # they should be written as \u001b\u005b\u0038\u007e. # # Procedure based on # https://linuxvox.com/blog/what-is-terminal-escape-sequence-for-ctrl-arrow-left-right-in-term-linux/ diff --git a/config.dot/alacritty/alacritty.yml.link b/config.dot/alacritty/alacritty.yml.link index a836290..067cd41 100644 --- a/config.dot/alacritty/alacritty.yml.link +++ b/config.dot/alacritty/alacritty.yml.link @@ -43,8 +43,8 @@ colors: white : "#ffffff" window: - title: "terminal" - decorations: "None" + title : "terminal" + #decorations: "None" # Key bindings translates what is typed in the application to what is actually # _emulated_ by the application. |
