Model: add support for Hackintosh
This commit is contained in:
parent
767cd93f38
commit
329346d460
1 changed files with 7 additions and 1 deletions
8
neofetch
8
neofetch
|
@ -242,7 +242,13 @@ get_model() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Mac OS X") model="$(sysctl -n hw.model)" ;;
|
"Mac OS X")
|
||||||
|
if [[ $(kextstat | grep "FakeSMC") != "" ]]; then
|
||||||
|
model="Hackintosh (SMBIOS: $(sysctl -n hw.model))"
|
||||||
|
else
|
||||||
|
model="$(sysctl -n hw.model)"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
"iPhone OS")
|
"iPhone OS")
|
||||||
case "$machine_arch" in
|
case "$machine_arch" in
|
||||||
"iPad1,1") model="iPad" ;;
|
"iPad1,1") model="iPad" ;;
|
||||||
|
|
Loading…
Reference in a new issue