diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 7194eaf..ac4652e 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -2,6 +2,7 @@ ## 19 Sep 2024 - updated xdph installation since it is now in Debian Repo +- Added fastfetch on tty. However, will be disabled if user decided to install pokemon colorscripts ## 14 Sep 2024 - Added Essential Packages final check in lieu of errors from Install log files in Install-Logs directory diff --git a/assets/.zshrc b/assets/.zshrc index 8f491d1..5cb4d8f 100644 --- a/assets/.zshrc +++ b/assets/.zshrc @@ -18,6 +18,8 @@ source $ZSH/oh-my-zsh.sh # Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos #pokemon-colorscripts --no-title -s -r +# fastfetch. Will be disabled if above colorscript was chosen to install +fastfetch -c $HOME/.config/fastfetch/config-compact.jsonc # Set-up icons for files/folders in terminal using eza alias ls='eza -a --icons' diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh index d5b7334..3c3137a 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -51,6 +51,10 @@ while true; do cd pokemon-colorscripts && sudo ./install.sh && cd .. fi sed -i '/#pokemon-colorscripts --no-title -s -r/s/^#//' assets/.zshrc >> "$LOG" 2>&1 + + # fastfetch. Will be disabled if above colorscript was chosen to install + fastfetch -c $HOME/.config/fastfetch/config-compact.jsonc + echo "${NOTE} Pokemon Installation process completed" 2>&1 | tee -a "$LOG" break ;;