From 8faff7a9a2a362e6b8c3fb4bc03dda3d2da624d8 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Feb 2025 12:37:16 +0900 Subject: [PATCH] added Fantasque Sans Mono Nerd for Kitty --- CHANGELOGS.md | 1 + install-scripts/fonts.sh | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index c647ec6..60031b0 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -2,6 +2,7 @@ ## 23 Feb 2025 - added Victor Mono Font for proper hyprlock font rendering for Dots v2.3.12 +- added Fantasque Sans Mono Nerd for Kitty ## 22 Feb 2025 - replaced eog with loupe diff --git a/install-scripts/fonts.sh b/install-scripts/fonts.sh index ad6c4e9..1b7ffd7 100755 --- a/install-scripts/fonts.sh +++ b/install-scripts/fonts.sh @@ -52,6 +52,13 @@ mkdir -p ~/.local/share/fonts/JetBrainsMonoNerd 2>&1 | tee -a "$LOG" # Extract the new files into the JetBrainsMono folder and log the output tar -xJkf JetBrainsMono.tar.xz -C ~/.local/share/fonts/JetBrainsMonoNerd 2>&1 | tee -a "$LOG" +# Fantasque Mono Nerd Font +if wget -q https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/FantasqueSansMono.zip; then + mkdir -p "$HOME/.local/share/fonts/FantasqueSansMonoNerd" && unzip -o -q "FantasqueSansMono.zip" -d "$HOME/.local/share/fonts/FantasqueSansMono" && echo "FantasqueSansMono installed successfully" | tee -a "$LOG" +else + echo -e "\n${ERROR} Failed to download ${YELLOW}Fantasque Sans Mono Nerd Font${RESET} Please check your connection\n" | tee -a "$LOG" +fi + # Victor Mono-Font if wget -q https://rubjo.github.io/victor-mono/VictorMonoAll.zip; then mkdir -p "$HOME/.local/share/fonts/VictorMono" && unzip -o -q "VictorMonoAll.zip" -d "$HOME/.local/share/fonts/VictorMono" && echo "Victor Font installed successfully" | tee -a "$LOG"