mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
added Fantasque Sans Mono Nerd for Kitty
This commit is contained in:
parent
4988fccf53
commit
8faff7a9a2
@ -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
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user