diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 3df15a1..c647ec6 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -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 - replaced eog with loupe diff --git a/install-scripts/01-hypr-pkgs.sh b/install-scripts/01-hypr-pkgs.sh index 46cf833..bf78b00 100755 --- a/install-scripts/01-hypr-pkgs.sh +++ b/install-scripts/01-hypr-pkgs.sh @@ -34,6 +34,7 @@ hypr_package=( slurp sway-notification-center swappy + unzip # required later waybar wget wl-clipboard diff --git a/install-scripts/fonts.sh b/install-scripts/fonts.sh index 514a3df..ad6c4e9 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" +# 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 fc-cache -v 2>&1 | tee -a "$LOG"