2009-Nissan-Cube / About-This-Hack

Discover your hardware on macOS with this simple, user-friendly hardware info app that retains the beloved design language of the classic 'About This Mac' interface, while gaining access to a wealth of additional features.
MIT License
290 stars 23 forks source link

Metal info is next to VRAM, space has been added #105

Closed perez987 closed 4 months ago

perez987 commented 4 months ago

Metal is next to VRAM, with no separation between the two.

No space
return "\(chipset) \(vram)(Metal \(metal))".trimmingCharacters(in: .whitespaces)

A space has been added to separate them.

Space
return "\(chipset) \(vram) (Metal \(metal))".trimmingCharacters(in: .whitespaces)

It's a very small change but I like showing the GPU info better this way.

0xCUB3 commented 4 months ago

Thank you!