Skip to content
Safar Ligal edited this page Jan 10, 2024 · 1 revision

Welcome to the alacritty-colorscheme wiki!

PyPI PyPI - Downloads

Snippets

We can use alacritty colorscheme with other tools to extend the existing functionality.

Snippet by @dungducphan

To quickly choose and change the colorscheme, you can combine the alacritty-colorscheme command with fd and fzf. Put the function below into your $HOME/.bashrc or $HOME/.zshrc

# ALACRITTY colorscheme changer
function set_colorscheme() {
  ALACRITTY_DIR=$HOME/.config/alacritty
  alacritty-colorscheme -V -c $ALACRITTY_DIR/alacritty.yml apply $(fd . "$ALACRITTY_DIR/colors/themes" --type file --extension yaml --extension yml | fzf)
}

Just make sure you have fd and fzf.

Clone this wiki locally