Jump to content
4 posts in this topic

Recommended Posts

Hello.

To change the name of the video card in about this mac

 

in the root 

 

/Application/Utility/System Information.app/Contents/Resources/en.lproj/SPInfo.String

 

in the string

 

<string>DISP_GFX_MAIN</string>

 

<key>%@ %@</key>

 

modify this key 
<key>%@ %@</key>
 
<key>name video card</key>
 

 

Use TextWrangler, just the trial version.

  • Like 1

Hello.

To change the name of the video card in about this mac

 

in the root 

 

/Application/Utility/System Information.app/Contents/Resources/en.lproj/SPInfo.String

 

in the string

 

<string>DISP_GFX_MAIN</string>

 

<key>%@ %@</key>

 

modify this key 
<key>%@ %@</key>
 
<key>name video card</key>
 

 

Use TextWrangler, just the trial version.

Yes, if you only care about changing it in About This Mac that works just fine as well.

There's no direct way to do so with Clover, but it can inject custom code with AddProperties which should give you what you want with something like this:

<key>AddProperties</key>
<array>
   <dict>
      <key>Device</key>
      <string>NVidia</string>
      <key>Key</key>
      <string>model</string>
      <key>Value</key>
      <string>intended name</string>
   </dict>
</array>

I'm not sure but I believe it requires the AddDTGP and FixDisplay DSDT Fixes as well.

  • Like 1
×
×
  • Create New...