new aliases + neofetch to display system info

This commit is contained in:
Morgan Wattiez 2019-08-18 20:42:45 +02:00
parent d2b0bf7340
commit 463676fbd3
3 changed files with 9 additions and 0 deletions

View File

@ -98,3 +98,5 @@ brew "pandoc"
brew "shellcheck"
# add spell check
brew "aspell"
# add neofetch to nicely display system info
brew "neofetch"

View File

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

View File

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