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
This commit is contained in:
Donovan Glover 2022-07-29 15:28:43 -04:00
parent 79f38a0ed0
commit 9fe88d0039
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
4 changed files with 0 additions and 171 deletions

View File

@ -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

View File

@ -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}"

View File

@ -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}"

View File

@ -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