added Victor Mono Font for proper hyprlock font rendering for Dots v2.3.12

This commit is contained in:
JaKooLit 2025-02-23 11:46:07 +09:00
parent c103b2d2ef
commit 4988fccf53
3 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,7 @@
## Changelogs ## CHANGELOGS
## 23 Feb 2025
- added Victor Mono Font for proper hyprlock font rendering for Dots v2.3.12
## 22 Feb 2025 ## 22 Feb 2025
- replaced eog with loupe - replaced eog with loupe

View File

@ -34,6 +34,7 @@ hypr_package=(
slurp slurp
sway-notification-center sway-notification-center
swappy swappy
unzip # required later
waybar waybar
wget wget
wl-clipboard wl-clipboard

View File

@ -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 # 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" tar -xJkf JetBrainsMono.tar.xz -C ~/.local/share/fonts/JetBrainsMonoNerd 2>&1 | tee -a "$LOG"
# 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"
else
echo -e "\n${ERROR} Failed to download ${YELLOW}Victor Mono Font${RESET} Please check your connection\n" | tee -a "$LOG"
fi
# Update font cache and log the output # Update font cache and log the output
fc-cache -v 2>&1 | tee -a "$LOG" fc-cache -v 2>&1 | tee -a "$LOG"