-
Notifications
You must be signed in to change notification settings - Fork 35
Home
Safar Ligal edited this page Jan 10, 2024
·
1 revision
Welcome to the alacritty-colorscheme wiki!
We can use alacritty colorscheme with other tools to extend the existing functionality.
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)
}