diff --git a/Brewfile b/Brewfile index 3cc42aa..e77e06e 100644 --- a/Brewfile +++ b/Brewfile @@ -98,3 +98,5 @@ brew "pandoc" brew "shellcheck" # add spell check brew "aspell" +# add neofetch to nicely display system info +brew "neofetch" diff --git a/centos.sh b/centos.sh index f2dc79c..4a17300 100644 --- a/centos.sh +++ b/centos.sh @@ -217,3 +217,8 @@ yum -y install ShellCheck # Add spell checker + english dictionary yum -y install aspell aspell-en + +# Add neofetch repository +curl -o /etc/yum.repos.d/konimex-neofetch-epel-7.repo https://copr.fedorainfracloud.org/coprs/konimex/neofetch/repo/epel-7/konimex-neofetch-epel-7.repo +# Install neofetch to display system info nicely +yum -y install neofetch diff --git a/dot_zsh_aliases b/dot_zsh_aliases index 1a677ad..60b3035 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -98,6 +98,8 @@ alias latency='curl cheat.sh/latency' alias moon='curl "wttr.in/Moon?lang=fr"' alias lune='moon' alias help='tldr' +alias systeminfo='neofetch' +alias monitoring='glances' # Show/hide hidden files in Finder alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"