chris1111 Posted February 6, 2021 Share Posted February 6, 2021 (edited) 1 hour ago, miliuco said: Today with free time I am testing themes with background. It is very entertaining. I have discovered another very nice one, Gold by @chris1111, what do you think? As they say on the radio, over and out ... for now Thanks You have probably windows in the same Drive so rename HardDrive.icns to Windows EDIT ++ sorry typo rename Windows.icns to HardDrive.icns Edited February 6, 2021 by chris1111 rename Windows.icns to HardDrive.icns 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750450 Share on other sites More sharing options...
miliuco Posted February 6, 2021 Share Posted February 6, 2021 1 hour ago, chris1111 said: Thanks You have probably windows in the same Drive so rename HardDrive.icns to Windows EDIT ++ sorry typo rename Windows.icns to HardDrive.icns No, Windows is on another disk. Windows entry is not the one detected by OC (ScanPolicy does not include NTFS systems) but created from Misc> Entries. OC puts a generic OC icon to this entry. That's why you don't see a Windows icon. I do it like this so that Windows is behind BigSur in the menu. If OC detects NTFS systems, it puts Windows before BigSur with right icon. It's a personal cosmetic fad 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750456 Share on other sites More sharing options...
blackosx Posted February 7, 2021 Author Share Posted February 7, 2021 23 hours ago, blackosx said: Next time I’m on my desktop machine I’ll do it and update the files in the repo. I've updated the backgrounds in the BlueGlow icon packs to have slightly stronger logos. Previews and download links are the same as here. @eSaF - Hope the Gigabyte one is now better for you, if you're still using it. 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750493 Share on other sites More sharing options...
blackosx Posted February 8, 2021 Author Share Posted February 8, 2021 I don't see why having Windows first is an issue, but see @miliuco post above where he says what he did to achieve this. Essentially: 1 - Change ScanPolicy to not include NTFS (ie. don't look for Microsoft basic data partitions) 2 - Create a custom entry to manually add Windows 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750570 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 (edited) 2 hours ago, eSaF said: Bro it's not really an issue, probably my OCD kicking in, will check out your recommendation though, if it doesn't work out will leave as is - Cheers. I think we're both quite picky How to add a boot entry in OpenCore Windows Boot Manager Path consists of an EFI path + a boot loader path. How to find your Windows EFI path? Select Shell.efi from OpenCore boot options (should be enabled in config.plist). Type FS0: > type DIR > if there is an EFI folder type cd EFI > type DIR again to see if it is the EFI folder of the Windows disk. Do this successively for each FS volume (FS1:, FS2:, etc.) until you find the Windows EFI folder. For example, mine is FS0 (first). Windows EFI is where the Windows Boot Manager locates. You must memorize its identifier index. Print the mapping table of all volumes and save it to a file named map_table.txt this way: map > map_table.txt Where do you find the map_table.txt file? On the EFI volume the prompt is on when you type map > map_table.txt. Exit. Return to macOS. Mount the volume where you stored the map_table.txt and open it with your preferred text editor. For example: sudo diskutil mount disk0s1 open /Volumes/EFI/map_table.txt Find the line that contains FS0 (or the one that corresponds to your Windows EFI folder) and copy its path. For example: PciRoot(0x0)/Pci(0x17,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,GPT,4E088723- D4D9-4D7B-824A-2B38AB53CD72,0x3F,0x552FB)/ Add the bootloader path: \EFI\Microsoft\Boot\bootmgfw.efi Finally, a completed path going to be filled in the /Misc/Entries of config.plist goes as follows: PciRoot(0x0)/Pci(0x17,0x0)/Sata(0x1,0xFFFF,0x0)/HD(1,GPT,4E088723-D4D9-4D7B-824A-2B38AB53CD72,0x3F,0x552FB)/\EFI\Microsoft\Boot\bootmgfw.efi Notice that there is no space between the PCI path and the bootloader path. Windows behind macOS in the OpenCore menu This is accompanied by a ScanPolicy value that does not show neither NTFS systems nor EFI partitions. This way, macOS disk appears first and the Windows entry appears behind macOS disk. Edited February 8, 2021 by miliuco 2 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750582 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 (edited) @eSaF Windows entry example. <key>Entries</key> <array> <dict> <key>Arguments</key> <string></string> <key>Auxiliary</key> <false/> <key>Comment</key> <string>Windows 10</string> <key>Enabled</key> <true/> <key>Name</key> <string>Windows</string> <key>Path</key> <string>PciRoot(0x0)/Pci(0x1D,0x0)/Pci(0x0,0x0)/NVMe(0x1,18-CC-1C-49-8B-44-1B-00)/HD(1,GPT,DF3F0348-A4F8-4A34-9C86-963B0E98F2BE,0x800,0x54747)/\EFI\Microsoft\Boot\bootmgfw.efi</string> <key>TextMode</key> <false/> </dict> </array> SanPolicy value to only show: 0x00000001 - OC_SCAN_FILE_SYSTEM_LOCK. 0x00000002 - OC_SCAN_DEVICE_LOCK. 0x00000100 - OC_SCAN_ALLOW_FS_APFS. 0x00000200 - OC_SCAN_ALLOW_FS_HFS. 0x00010000 - OC_SCAN_ALLOW_DEVICE_SATA. 0x00080000 - OC_SCAN_ALLOW_DEVICE_NVME. 0x00200000 - OC_SCAN_ALLOW_DEVICE_USB. <key>ScanPolicy</key> <integer>2687747</integer> Edited February 8, 2021 by miliuco 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750584 Share on other sites More sharing options...
blackosx Posted February 8, 2021 Author Share Posted February 8, 2021 14 minutes ago, miliuco said: I think we're both quite picky How to add a boot entry in OpenCore Windows Boot Manager Path consists of an EFI path + a boot loader path. .../snip/... Excellent explanation I would like to add another way to obtain your Windows path which would be to use an OpenCore debug build and check the log for an entry like this: 05:758 00:005 OCB: Registering entry Windows (T:32|F:0|G:0|E:0) - PciRoot(0x0)/Pci(0x17,0x0)/Sata(0x1,0x0,0x0)/HD(1,GPT,558011E8-3667-464B-9BB2-B292181AE197,0x28,0x64000)/\EFI\Microsoft\Boot\bootmgfw.efi 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750586 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 1 minute ago, blackosx said: Excellent explanation I would like to add another way to obtain your Windows path which would be to use an OpenCore debug build and check the log for an entry like this: 05:758 00:005 OCB: Registering entry Windows (T:32|F:0|G:0|E:0) - PciRoot(0x0)/Pci(0x17,0x0)/Sata(0x1,0x0,0x0)/HD(1,GPT,558011E8-3667-464B-9BB2-B292181AE197,0x28,0x64000)/\EFI\Microsoft\Boot\bootmgfw.efi Yes, I forgot this, but for me this way it's more difficult, I usually have OpenCore release. 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750591 Share on other sites More sharing options...
odemolay Posted February 8, 2021 Share Posted February 8, 2021 (edited) hy everybody, first thank you for you works. i need you. i try to use this theme in OCC 066 (i have tried in 065 to without sucess) https://u.pcloud.link/publink/show?code=kZjNWhXZbNyHqnJQ5c0thc94lnXAc01Ch5H7 i dont understand why it doesnt showup at the boot invit. i use one of Chris1111 it s running perfectly. my OC settings seems to be good i've tried 3 different chris1111 themes and one made by blackosx program without any issue would tou please help me? Edited February 8, 2021 by odemolay 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750607 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 22 minutes ago, odemolay said: hy everybody, first thank you for you works. i need you. i try to use this theme in OCC 066 (i have tried in 065 to without sucess) https://u.pcloud.link/publink/show?code=kZjNWhXZbNyHqnJQ5c0thc94lnXAc01Ch5H7 i dont understand why it doesnt showup at the boot invit. i use one of Chris1111 it s running perfectly. my OC settings seems to be good i've tried 3 different chris1111 themes and one made by blackosx program without any issue would tou please help me? But with that theme yo must set PickerVariant to Modern. Have you do so? 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750609 Share on other sites More sharing options...
odemolay Posted February 8, 2021 Share Posted February 8, 2021 (edited) hello, yes pickerVariant is already set to Modern, this is what I use for@chris1111's themes Edited February 8, 2021 by odemolay Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750611 Share on other sites More sharing options...
chris1111 Posted February 8, 2021 Share Posted February 8, 2021 4 minutes ago, odemolay said: hello, yes pickerVariant is already set to Modern, this is what I use for@chris1111's themes This is strange what is show in boot Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750612 Share on other sites More sharing options...
blackosx Posted February 8, 2021 Author Share Posted February 8, 2021 @odemolay You are missing Shell.icns, or in the case of your Image dir, ModernShell.icns 2 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750614 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 8 minutes ago, blackosx said: @odemolay You are missing Shell.icns, or in the case of your Image dir, ModernShell.icns You’re right!!! Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750616 Share on other sites More sharing options...
chris1111 Posted February 8, 2021 Share Posted February 8, 2021 6 minutes ago, eSaF said: @chris1111 - I haven't forgotten your valuable contribution to the community, my only wish to be half as talented as you guys. thank you my friend you are a verry gentleman as i always said regarding my themes creations, i'm not a pro like blackosx i do it for fun and challenge. 2 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750622 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 9 minutes ago, eSaF said: @chris1111 - I haven't forgotten your valuable contribution to the community, my only wish to be half as talented as you guys. @chris1111 I have the same opinion. And I visit Hakintosh Montreal & France from time to time 2 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750623 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 (edited) @eSaF For me you are already a guru but... what to say about Blackosx, Chameleon Team, CVad, chris1111, dmazar, Download-Fritz, Elconiglio, ErmaC, Kabyl, MaLdOn, Mieze, mitch_de, netkas, Oldnapalm, Pavo, Pike R. Alpha, PMheart, RehabMan, Slice , STLVNUB, Toleda, vandroiy2013, vitt9696 and so many others that I don't remember now? What a group of thinking minds!!! I know it's OT but I can't resist this little tribute. Edited February 8, 2021 by miliuco Added MaLdOn. 2 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750626 Share on other sites More sharing options...
blackosx Posted February 8, 2021 Author Share Posted February 8, 2021 Thanks guys. Always nice to hear feedback, but I am a small part of this larger community, just like yourselves, and will always try to contribute whenever I can, of course time allowing. 55 minutes ago, chris1111 said: thank you my friend you are a verry gentleman as i always said regarding my themes creations, i'm not a pro like blackosx i do it for fun and challenge. Funny thing is, I don't consider myself a pro either. Just something I do for fun and a challenge. 2 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750635 Share on other sites More sharing options...
chris1111 Posted February 8, 2021 Share Posted February 8, 2021 5 minutes ago, blackosx said: Thanks guys. Always nice to hear feedback, but I am a small part of this larger community, just like yourselves, and will always try to contribute whenever I can, of course time allowing. Funny thing is, I don't consider myself a pro either. Just something I do for fun and a challenge. If your not a Pro were is the Pro on the themes Building Hackintosh community you are the reference for all 1 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750638 Share on other sites More sharing options...
odemolay Posted February 8, 2021 Share Posted February 8, 2021 6 hours ago, blackosx said: @odemolay You are missing Shell.icns, or in the case of your Image dir, ModernShell.icns thanks for the tip and for seeing this @blackosx. I put in my image folder a Modernshell.icns of one of the @chris1111 themes. but that did not change anything. if you try it does it work for you? Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750663 Share on other sites More sharing options...
chris1111 Posted February 8, 2021 Share Posted February 8, 2021 (edited) 45 minutes ago, odemolay said: thanks for the tip and for seeing this @blackosx. I put in my image folder a Modernshell.icns of one of the @chris1111 themes. but that did not change anything. if you try it does it work for you? Right and Left must ba at 80x80 you have 85x85 this is the probleme I test your attaching theme with my arrow and its work you have also to duplicate Tool then rename to Shell EDT *** Attaching correction themes Resources nonop 2.zip ModernLeft.icns.zip ModernRight.icns.zip Test with the orig arrow Edited February 8, 2021 by chris1111 EDIT **** Attaching correction themes 4 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750665 Share on other sites More sharing options...
blackosx Posted February 8, 2021 Author Share Posted February 8, 2021 Thanks @chris1111 I only looked at the filenames and haven’t had a chance to test it. 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750666 Share on other sites More sharing options...
chris1111 Posted February 8, 2021 Share Posted February 8, 2021 1 minute ago, blackosx said: Thanks @chris1111 I only looked at the filenames and haven’t had a chance to test it. Yes me to this morning but now I have little time Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750667 Share on other sites More sharing options...
odemolay Posted February 8, 2021 Share Posted February 8, 2021 (edited) thanks you both you make my day. Edited February 8, 2021 by odemolay 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750673 Share on other sites More sharing options...
miliuco Posted February 8, 2021 Share Posted February 8, 2021 (edited) 2 hours ago, chris1111 said: Right and Left must be at 80x80 you have 85x85 this is the problem... Right. You have found the problem. Well done. And you have also made Left and Right icons quickly and well designed. Edited February 8, 2021 by miliuco 1 Link to comment https://www.insanelymac.com/forum/topic/344251-opencanopy-icons/page/10/#findComment-2750675 Share on other sites More sharing options...
Recommended Posts