Merge branch 'master' of github.com:dylanaraps/neofetch
This commit is contained in:
commit
b5c76c0dc3
|
@ -188,6 +188,7 @@ https://github.com/dylanaraps/neofetch/wiki/Following-HEAD
|
|||
- `wget https://copr.fedorainfracloud.org/coprs/konimex/neofetch/repo/epel-7/konimex-neofetch-epel-7.repo`
|
||||
3. Install the package
|
||||
- `sudo yum install neofetch`
|
||||
* NOTE: This will only work in RHEL/CentOS 7
|
||||
|
||||
### Mac OS X
|
||||
1. Install `neofetch` with Homebrew
|
||||
|
|
10
neofetch
10
neofetch
|
@ -469,6 +469,7 @@ case "$os" in
|
|||
|
||||
"Mac OS X")
|
||||
osx_version=$(sw_vers -productVersion)
|
||||
osx_build=$(sw_vers -buildVersion)
|
||||
|
||||
case "${osx_version%.*}" in
|
||||
"10.4") codename="Mac OS X Tiger" ;;
|
||||
|
@ -481,9 +482,7 @@ case "$os" in
|
|||
"10.11") codename="OS X El Capitan" ;;
|
||||
*) codename="Mac OS X" ;;
|
||||
esac
|
||||
distro="$codename $osx_version"
|
||||
|
||||
[ "$osx_buildversion" == "on" ] && distro+=" $(sw_vers -buildVersion)"
|
||||
distro="$codename $osx_version $osx_build"
|
||||
;;
|
||||
|
||||
"OpenBSD")
|
||||
|
@ -2742,6 +2741,10 @@ case "$osx_codename" in
|
|||
"off") distro=${distro/${codename}/Mac OS X} ;;
|
||||
esac
|
||||
|
||||
case "$osx_buildversion" in
|
||||
"off") distro=${distro/ ${osx_build}} ;;
|
||||
esac
|
||||
|
||||
# }}}
|
||||
|
||||
|
||||
|
@ -2816,4 +2819,3 @@ if [ "$scrot" == "on" ]; then
|
|||
fi
|
||||
|
||||
# }}}
|
||||
|
||||
|
|
Reference in New Issue