From: Silvio Rhatto Date: Thu, 25 Dec 2025 11:49:04 +0000 (-0300) Subject: Feat: alacritty: minor improvements X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a7f693972039dbb5a05bef0b7bb5e1dc3dffadd4;p=rhatto%2Fdotfiles%2Fxsession.git Feat: alacritty: minor improvements --- 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.