- Make sure Geist Mono Nerd Font is installed, you can do that from terminal with:
curl -L https://github.com/ryanoasis/nerd-fonts/releases/latest/download/GeistMono.zip -o GeistMono.zip
mkdir -p ~/.local/share/fonts
unzip GeistMono.zip -d ~/.local/share/fonts/GeistMono
fc-cache -fv- Make sure kitty is installed:
sudo pacman -S kittyand cybrcore theme is applied - Make sure fish is installed:
sudo pacman -S fish - See Installation Guide if you're coming from cybr-hyprland and haven't set up prerequisites yet
- fish Github | Arch Wiki
$EDITOR ~/.config/fish/config.fish2. Insert cybrcore theme
exec fishfor var in (set -n | grep fish_color_)
set color (string replace "fish_color_" "" $var)
echo -n "$var → "
set_color $$var
echo "Sample text"
set_color normal
end
