Merge pull request #220 from JaKooLit/development

Development to main
This commit is contained in:
Ja.KooLit
2025-02-23 14:47:35 +09:00
committed by GitHub
4 changed files with 21 additions and 5 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -12,8 +12,10 @@ fonts=(
otf-font-awesome
ttf-droid
ttf-fira-code
ttf-fantasque-nerd
ttf-jetbrains-mono
ttf-jetbrains-mono-nerd
ttf-victor-mono
)

View File

@@ -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