Merge pull request #846 from dylanaraps/gpu_driver_mac

gpu_driver: Add macOS (Nvidia) support
This commit is contained in:
Andrew Titmuss 2017-10-18 08:14:03 +11:00 committed by GitHub
commit bb9389797f
2 changed files with 8 additions and 1 deletions

View File

@ -26,7 +26,7 @@ print_info() {
info "GPU" gpu info "GPU" gpu
info "Memory" memory info "Memory" memory
# info "GPU Driver" gpu_driver # Linux only # info "GPU Driver" gpu_driver # Linux/macOS only
# info "CPU Usage" cpu_usage # info "CPU Usage" cpu_usage
# info "Disk" disk # info "Disk" disk
# info "Battery" battery # info "Battery" battery

View File

@ -2280,6 +2280,13 @@ get_gpu_driver() {
'/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "}')" '/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "}')"
gpu_driver="${gpu_driver%, }" gpu_driver="${gpu_driver%, }"
;; ;;
"Mac OS X")
if [[ "$(kextstat | grep "GeForceWeb")" != "" ]]; then
gpu_driver="Nvidia Web Driver"
else
gpu_driver="macOS Default Graphics Driver"
fi
;;
esac esac
} }