Contribute
Register

[solved] Custom Icon-Path for OS-Entry Clover config.plist

Status
Not open for further replies.
Joined
May 17, 2018
Messages
92
Motherboard
Fujitsu Esprimo E5730 SFF
CPU
Q8400/Q43
Graphics
9300GT/NV98
How can I set a Path to custom Icon for Clover?

F.e. I would like to set the "EFI/CLOVER/themes/BGM256/icons/os_win.icns"-Icon for the following Windows entry:

<dict>
<key>Disabled</key>
<false/>
<key>Ignore</key>
<false/>
<key>Path</key>
<string>\EFI\Win7\Boot\bootmgfw.efi</string>
<key>Title</key>
<string>Windows7</string>
<key>Type</key>
<string>Windows</string>
<key>VolumeType</key>
<string>Internal</string>
</dict>
 
Last edited:
Solution:

<dict>
<key>Disabled</key>
<false/>
<key>Ignore</key>
<false/>
<key>Image</key>
<string>\EFI\CLOVER\themes\BGM256\icons\os_win.icns</string>
<key>Path</key>
<string>\EFI\Win7\Boot\bootmgfw.efi</string>
<key>Title</key>
<string>Windows7</string>
<key>Type</key>
<string>Windows</string>
<key>VolumeType</key>
<string>Internal</string>
</dict>
 
Insert it to config.plist and clover-configurator will show it correctly.
 
I modified de config.plist with your text but the icons not change. Any solution?
IMG_20200409_160049.jpg
 
I have tried with png and icns 128x128
 
Yes. .icns should bring success.
Check with "file *.icns" wich format the origin icons have and convert it.
 
Status
Not open for further replies.
Back
Top