Added fastfetch on tty. However, will be disabled if user decided to install pokemon colorscripts
This commit is contained in:
parent
54bc0d1499
commit
17b836ee2f
|
|
@ -1,5 +1,8 @@
|
||||||
## Changelogs
|
## Changelogs
|
||||||
|
|
||||||
|
## 19 Sep 2024
|
||||||
|
- Added fastfetch on tty. However, will be disabled if user decided to install pokemon colorscripts
|
||||||
|
|
||||||
## 18 Sep 2024
|
## 18 Sep 2024
|
||||||
- dotfiles will now be downloaded from main or master branch instead of from the releases version.
|
- dotfiles will now be downloaded from main or master branch instead of from the releases version.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,9 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos
|
# Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos
|
||||||
#pokemon-colorscripts --no-title -s -r
|
#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
|
# Set-up icons for files/folders in terminal
|
||||||
alias ls='eza -a --icons'
|
alias ls='eza -a --icons'
|
||||||
alias ll='eza -al --icons'
|
alias ll='eza -al --icons'
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,10 @@ while true; do
|
||||||
[Yy]*)
|
[Yy]*)
|
||||||
zsh+=('pokemon-colorscripts-git')
|
zsh+=('pokemon-colorscripts-git')
|
||||||
sed -i '/#pokemon-colorscripts --no-title -s -r/s/^#//' assets/.zshrc
|
sed -i '/#pokemon-colorscripts --no-title -s -r/s/^#//' assets/.zshrc
|
||||||
|
|
||||||
|
# commenting out fastfetch since pokemon was chosen to install
|
||||||
|
sed -i '/^fastfetch -c \$HOME\/.config\/fastfetch\/config-compact.jsonc$/s/^/#/' assets/.zshrc
|
||||||
|
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
[Nn]*)
|
[Nn]*)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue