From 9fe88d003902a00cdde6e7fd1f190eecc3fe2bd3 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 29 Jul 2022 15:28:43 -0400 Subject: [PATCH] meta: Remove alacritty Although alacritty is an amazing terminal emulator, I am not interested in maintaining configuration files for it at this time. The current config works and is an excellent replica of the current kitty config. If you have a desire to use alacritty, you can use the files in this commit to get amazing support for things like pywal. The reason alacritty is being removed is because it doesn't fully support fcitx. Currently "inline input" doesn't work in Xorg, and it's impossible to see input under GNOME Wayland. For simplicity, only the terminal emulator that works the best for me will be officially supported, since I've never had a reason to use alacritty anyway. Source: https://github.com/alacritty/alacritty/issues/1613 --- alacritty/.config/alacritty/alacritty.yml | 35 ----------- .../wal/templates/colors--nodim-alacritty.yml | 53 ---------------- .../wal/templates/colors-alacritty.yml | 63 ------------------- alacritty/README.md | 20 ------ 4 files changed, 171 deletions(-) delete mode 100644 alacritty/.config/alacritty/alacritty.yml delete mode 100644 alacritty/.config/wal/templates/colors--nodim-alacritty.yml delete mode 100644 alacritty/.config/wal/templates/colors-alacritty.yml delete mode 100644 alacritty/README.md diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml deleted file mode 100644 index da152d77..00000000 --- a/alacritty/.config/alacritty/alacritty.yml +++ /dev/null @@ -1,35 +0,0 @@ -import: - - ~/.cache/wal/colors-alacritty.yml - -window: - opacity: 0.9 - padding: - x: 10 - y: 10 - decorations: none - startup_mode: Maximized - gtk_theme_variant: dark - -font: - normal: - family: Hack - size: 11 - -draw_bold_text_with_bright_colors: true - -selection: - save_to_clipboard: true - -cursor: - style: - shape: Beam - blinking: Always - -shell: - program: /usr/bin/fish - -mouse: - hide_when_typing: true - hints: - launcher: - program: /usr/bin/firefox diff --git a/alacritty/.config/wal/templates/colors--nodim-alacritty.yml b/alacritty/.config/wal/templates/colors--nodim-alacritty.yml deleted file mode 100644 index a6990e19..00000000 --- a/alacritty/.config/wal/templates/colors--nodim-alacritty.yml +++ /dev/null @@ -1,53 +0,0 @@ -colors: - - primary: - background: "{background}" - foreground: "{foreground}" - - cursor: - text: CellBackground - cursor: CellForeground - - vi_mode_cursor: - text: CellBackground - cursor: CellForeground - - search: - matches: - foreground: '{color0}' - background: '{color15}' - focused_match: - foreground: CellBackground - background: CellForeground - - bar: - foreground: '{color8}' - background: '{color7}' - - line_indicator: - foreground: None - background: None - - selection: - text: CellBackground - background: CellForeground - - normal: - black: "{color0}" - red: "{color1}" - green: "{color2}" - yellow: "{color3}" - blue: "{color4}" - magenta: "{color5}" - cyan: "{color6}" - white: "{color7}" - - bright: - black: "{color8}" - red: "{color9}" - green: "{color10}" - yellow: "{color11}" - blue: "{color12}" - magenta: "{color13}" - cyan: "{color14}" - white: "{color15}" diff --git a/alacritty/.config/wal/templates/colors-alacritty.yml b/alacritty/.config/wal/templates/colors-alacritty.yml deleted file mode 100644 index febe33d6..00000000 --- a/alacritty/.config/wal/templates/colors-alacritty.yml +++ /dev/null @@ -1,63 +0,0 @@ -colors: - - primary: - background: "{background}" - foreground: "{foreground}" - - cursor: - text: CellBackground - cursor: CellForeground - - vi_mode_cursor: - text: CellBackground - cursor: CellForeground - - search: - matches: - foreground: '{color0}' - background: '{color15}' - focused_match: - foreground: CellBackground - background: CellForeground - - bar: - foreground: '{color8}' - background: '{color7}' - - line_indicator: - foreground: None - background: None - - selection: - text: CellBackground - background: CellForeground - - normal: - black: "{color0}" - red: "{color1}" - green: "{color2}" - yellow: "{color3}" - blue: "{color4}" - magenta: "{color5}" - cyan: "{color6}" - white: "{color7}" - - bright: - black: "{color8}" - red: "{color9}" - green: "{color10}" - yellow: "{color11}" - blue: "{color12}" - magenta: "{color13}" - cyan: "{color14}" - white: "{color15}" - - dim: - black: "{color15}" - red: "{color9}" - green: "{color13}" - yellow: "{color11}" - blue: "{color12}" - magenta: "{color10}" - cyan: "{color14}" - white: "{color8}" diff --git a/alacritty/README.md b/alacritty/README.md deleted file mode 100644 index ebe1b653..00000000 --- a/alacritty/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# alacritty - -[alacritty][alacritty] is a new terminal emulator written in Rust. - -## Use Cases - -alacritty can be used to: - -- Have a terminal emulator that just works -- Have a terminal emulator with modern features like live reload, and without all the extras like window management -- Master [tmux](/tmux) since you won't be relying on window management of your terminal emulator - -You should not use alacritty if: - -- You have a desire to output images in your terminal (use [kitty](/kitty) instead since [libsixel][libsixel] support is WIP) -- You have a need to use Japanese input in your terminal ([an issue][ime-support] for over 3 years in alacritty, [kitty](/kitty) supports this) - -[alacritty]: https://github.com/alacritty/alacritty -[libsixel]: https://github.com/alacritty/alacritty/issues/910 -[ime-support]: https://github.com/alacritty/alacritty/issues/1101