diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 12210b9..ac224cb 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,4 +1,15 @@ -## Changelogs +## CHANGELOGS + +## 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 +- changed url for installing oh-my-zsh to get wider coverage. Some countries are blocking github raw url's + +## 20 Feb 2025 +- Added nwg-displays for the upcoming Kools dots v2.3.12 ## 18 Feb 2025 - Change default zsh theme to adnosterzak diff --git a/install-scripts/01-hypr-pkgs.sh b/install-scripts/01-hypr-pkgs.sh index 18104fa..d1e0818 100755 --- a/install-scripts/01-hypr-pkgs.sh +++ b/install-scripts/01-hypr-pkgs.sh @@ -41,6 +41,7 @@ hypr_package=( swappy swaync swww + unzip # needed later wallust waybar wget @@ -56,7 +57,7 @@ hypr_package_2=( brightnessctl btop cava - eog + loupe fastfetch gnome-system-monitor mousepad @@ -64,6 +65,7 @@ hypr_package_2=( mpv-mpris nvtop nwg-look + nwg-displays pacman-contrib qalculate-gtk vim diff --git a/install-scripts/fonts.sh b/install-scripts/fonts.sh index f5d883a..7322153 100755 --- a/install-scripts/fonts.sh +++ b/install-scripts/fonts.sh @@ -12,8 +12,10 @@ fonts=( otf-font-awesome ttf-droid ttf-fira-code + ttf-fantasque-nerd ttf-jetbrains-mono - ttf-jetbrains-mono-nerd + ttf-jetbrains-mono-nerd + ttf-victor-mono ) diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh index 89095cd..98fa562 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -33,7 +33,8 @@ for ZSH in "${zsh_pkg[@]}"; do done -# Check if the pokemon directory exists + +# Check if the zsh-completions directory exists if [ -d "zsh-completions" ]; then rm -rf zsh-completions fi @@ -42,7 +43,7 @@ fi if command -v zsh >/dev/null; then printf "${NOTE} Installing ${SKY_BLUE}Oh My Zsh and plugins${RESET} ...\n" if [ ! -d "$HOME/.oh-my-zsh" ]; then - sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended + sh -c "$(curl -fsSL https://install.ohmyz.sh)" "" --unattended else echo "${INFO} Directory .oh-my-zsh already exists. Skipping re-installation." 2>&1 | tee -a "$LOG" fi