├── CLOVER ├── ACPI │ └── patched │ │ ├── SSDT-EC.aml │ │ └── SSDT-pr.aml ├── CLOVERX64.efi ├── config.plist ├── drivers64UEFI │ ├── ApfsDriverLoader-64.efi │ ├── AptioMemoryFix-64.efi │ └── HFSPlus.efi ├── kexts │ └── Other │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ │ ├── FakeSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── FakeSMC │ │ │ └── Plugins │ │ │ ├── FakeSMC_ACPISensors.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── ACPISensors │ │ │ ├── FakeSMC_CPUSensors.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── CPUSensors │ │ │ ├── FakeSMC_GPUSensors.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── GPUSensors │ │ │ ├── FakeSMC_LPCSensors.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── LPCSensors │ │ │ └── FakeSMC_SMMSensors.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMMSensors │ │ ├── HDMIAudio.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── HDMIAudio │ │ │ └── Resources │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ └── Resources │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── USBPorts.kext │ │ └── Contents │ │ │ └── Info.plist │ │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen ├── themes │ └── SimpleThemeDark │ │ ├── background.png │ │ ├── banner.png │ │ ├── font.png │ │ ├── icons │ │ ├── cd_lin.icns │ │ ├── cd_mac.icns │ │ ├── cd_win.icns │ │ ├── func_about.png │ │ ├── func_clover.png │ │ ├── func_help.png │ │ ├── func_options.png │ │ ├── func_reset.png │ │ ├── func_shutdown.png │ │ ├── os_arch.icns │ │ ├── os_clover.icns │ │ ├── os_freebsd.icns │ │ ├── os_legacy.icns │ │ ├── os_linux.icns │ │ ├── os_mac.icns │ │ ├── os_recovery.icns │ │ ├── os_sierra.icns │ │ ├── os_ubuntu.icns │ │ ├── os_unknown.icns │ │ ├── os_win.icns │ │ ├── os_win7.icns │ │ ├── pointer.icns │ │ ├── tool_shell.icns │ │ ├── tool_shell.png │ │ ├── vol_clover.icns │ │ ├── vol_external.icns │ │ ├── vol_firewire.icns │ │ ├── vol_internal.icns │ │ ├── vol_internal_ext3.icns │ │ ├── vol_internal_hfs.icns │ │ ├── vol_internal_ntfs.icns │ │ ├── vol_optical.icns │ │ └── vol_recovery.icns │ │ ├── screenshot0.png │ │ ├── selection_big.png │ │ ├── selection_small.png │ │ └── theme.plist └── tools │ ├── Shell.inf │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ └── bdmesg.efi ├── OC ├── ACPI │ ├── SSDT-EC-USBX.dsl │ └── SSDT-PLUG.dsl ├── Drivers │ ├── HFSPlus.efi │ ├── OpenCanopy.efi │ └── OpenRuntime.efi ├── Kexts │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── IntelMausiEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausiEthernet │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ └── Resources │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen ├── OpenCore.efi ├── Resources │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ ├── Acidanthera │ │ │ ├── Chardonnay │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── ExtHardDrive.icns │ │ │ │ ├── HardDrive.icns │ │ │ │ ├── Left.icns │ │ │ │ ├── Lock.icns │ │ │ │ ├── Password.icns │ │ │ │ ├── Restart.icns │ │ │ │ ├── Right.icns │ │ │ │ ├── Selected.icns │ │ │ │ ├── Selector.icns │ │ │ │ ├── SetDefault.icns │ │ │ │ ├── Shell.icns │ │ │ │ ├── ShutDown.icns │ │ │ │ ├── Tool.icns │ │ │ │ └── Windows.icns │ │ │ ├── GoldenGate │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── ExtHardDrive.icns │ │ │ │ ├── HardDrive.icns │ │ │ │ ├── Left.icns │ │ │ │ ├── Lock.icns │ │ │ │ ├── Password.icns │ │ │ │ ├── Restart.icns │ │ │ │ ├── Right.icns │ │ │ │ ├── Selected.icns │ │ │ │ ├── Selector.icns │ │ │ │ ├── SetDefault.icns │ │ │ │ ├── Shell.icns │ │ │ │ ├── ShutDown.icns │ │ │ │ ├── Tool.icns │ │ │ │ └── Windows.icns │ │ │ └── Syrah │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── ExtHardDrive.icns │ │ │ │ ├── HardDrive.icns │ │ │ │ ├── Left.icns │ │ │ │ ├── Lock.icns │ │ │ │ ├── Password.icns │ │ │ │ ├── Restart.icns │ │ │ │ ├── Right.icns │ │ │ │ ├── Selected.icns │ │ │ │ ├── Selector.icns │ │ │ │ ├── SetDefault.icns │ │ │ │ ├── Shell.icns │ │ │ │ ├── ShutDown.icns │ │ │ │ ├── Tool.icns │ │ │ │ └── Windows.icns │ │ ├── Apple.icns │ │ ├── AppleRecv.icns │ │ ├── AppleTM.icns │ │ ├── BtnFocus.icns │ │ ├── Cursor.icns │ │ ├── Dot.icns │ │ ├── Enter.icns │ │ ├── ExtApple.icns │ │ ├── ExtAppleRecv.icns │ │ ├── ExtAppleTM.icns │ │ ├── ExtHardDrive.icns │ │ ├── ExtLinux.icns │ │ ├── ExtOther.icns │ │ ├── ExtResetNVRAM.icns │ │ ├── ExtShell.icns │ │ ├── ExtTool.icns │ │ ├── ExtWindows.icns │ │ ├── HardDrive.icns │ │ ├── Left.icns │ │ ├── Lock.icns │ │ ├── ModernAppleRecv.icns │ │ ├── ModernAppleTM.icns │ │ ├── ModernBackground-back.icns │ │ ├── ModernBackground.icns │ │ ├── ModernBtnFocus.icns │ │ ├── ModernCursor.icns │ │ ├── ModernDot.icns │ │ ├── ModernEnter.icns │ │ ├── ModernExtAppleRecv.icns │ │ ├── ModernExtAppleTM.icns │ │ ├── ModernExtHardDrive.icns │ │ ├── ModernHardDrive.icns │ │ ├── ModernLeft.icns │ │ ├── ModernLock.icns │ │ ├── ModernPassword.icns │ │ ├── ModernResetNVRAM.icns │ │ ├── ModernRestart.icns │ │ ├── ModernRight.icns │ │ ├── ModernSelected.icns │ │ ├── ModernSelector.icns │ │ ├── ModernSetDefault.icns │ │ ├── ModernShell.icns │ │ ├── ModernShutDown.icns │ │ ├── ModernTool.icns │ │ ├── ModernWindows.icns │ │ ├── OldAppleRecv.icns │ │ ├── OldAppleTM.icns │ │ ├── OldBtnFocus.icns │ │ ├── OldCursor.icns │ │ ├── OldDot.icns │ │ ├── OldEnter.icns │ │ ├── OldExtAppleRecv.icns │ │ ├── OldExtAppleTM.icns │ │ ├── OldExtHardDrive.icns │ │ ├── OldHardDrive.icns │ │ ├── OldLeft.icns │ │ ├── OldLock.icns │ │ ├── OldPassword.icns │ │ ├── OldRestart.icns │ │ ├── OldRight.icns │ │ ├── OldSelected.icns │ │ ├── OldSelector.icns │ │ ├── OldSetDefault.icns │ │ ├── OldShell.icns │ │ ├── OldShutDown.icns │ │ ├── OldTool.icns │ │ ├── OldWindows.icns │ │ ├── Other.icns │ │ ├── Password.icns │ │ ├── ResetNVRAM.icns │ │ ├── Restart.icns │ │ ├── Right.icns │ │ ├── Selected.icns │ │ ├── Selector.icns │ │ ├── SetDefault.icns │ │ ├── Shell.icns │ │ ├── ShutDown.icns │ │ ├── Tool.icns │ │ └── Windows.icns │ └── Label │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl ├── Tools │ ├── ControlMsrE2.efi │ └── ResetSystem.efi └── config.plist └── README.md /CLOVER/ACPI/patched/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-EC.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-pr.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-pr.aml -------------------------------------------------------------------------------- /CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/config.plist -------------------------------------------------------------------------------- /CLOVER/drivers64UEFI/ApfsDriverLoader-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/drivers64UEFI/ApfsDriverLoader-64.efi -------------------------------------------------------------------------------- /CLOVER/drivers64UEFI/AptioMemoryFix-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/drivers64UEFI/AptioMemoryFix-64.efi -------------------------------------------------------------------------------- /CLOVER/drivers64UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/drivers64UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_ACPISensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_ACPISensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_ACPISensors.kext/Contents/MacOS/ACPISensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_ACPISensors.kext/Contents/MacOS/ACPISensors -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_CPUSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_CPUSensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_CPUSensors.kext/Contents/MacOS/CPUSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_CPUSensors.kext/Contents/MacOS/CPUSensors -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_GPUSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_GPUSensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_GPUSensors.kext/Contents/MacOS/GPUSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_GPUSensors.kext/Contents/MacOS/GPUSensors -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_LPCSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_LPCSensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_LPCSensors.kext/Contents/MacOS/LPCSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_LPCSensors.kext/Contents/MacOS/LPCSensors -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_SMMSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_SMMSensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_SMMSensors.kext/Contents/MacOS/SMMSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/FakeSMC.kext/Contents/Plugins/FakeSMC_SMMSensors.kext/Contents/MacOS/SMMSensors -------------------------------------------------------------------------------- /CLOVER/kexts/Other/HDMIAudio.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/HDMIAudio.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/HDMIAudio.kext/Contents/MacOS/HDMIAudio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/HDMIAudio.kext/Contents/MacOS/HDMIAudio -------------------------------------------------------------------------------- /CLOVER/kexts/Other/HDMIAudio.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/HDMIAudio.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /CLOVER/kexts/Other/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/USBPorts.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/background.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/banner.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/font.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/cd_lin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/cd_lin.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/cd_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/cd_mac.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/cd_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/cd_win.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/func_about.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/func_clover.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/func_help.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/func_options.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/func_reset.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/func_shutdown.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_arch.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_freebsd.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_legacy.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_linux.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_mac.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_recovery.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_sierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_unknown.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_win.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/os_win7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/os_win7.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/pointer.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/tool_shell.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/tool_shell.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_external.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_firewire.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_internal.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_optical.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/icons/vol_recovery.icns -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/screenshot0.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/selection_big.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/selection_small.png -------------------------------------------------------------------------------- /CLOVER/themes/SimpleThemeDark/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/themes/SimpleThemeDark/theme.plist -------------------------------------------------------------------------------- /CLOVER/tools/Shell.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/tools/Shell.inf -------------------------------------------------------------------------------- /CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /OC/ACPI/SSDT-EC-USBX.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/ACPI/SSDT-EC-USBX.dsl -------------------------------------------------------------------------------- /OC/ACPI/SSDT-PLUG.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/ACPI/SSDT-PLUG.dsl -------------------------------------------------------------------------------- /OC/Drivers/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Drivers/HFSPlus.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /OC/Kexts/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/IntelMausiEthernet.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /OC/Kexts/USBInjectAll.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/USBInjectAll.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /OC/Kexts/USBInjectAll.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/USBInjectAll.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/OpenCore.efi -------------------------------------------------------------------------------- /OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Dot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Tool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Acidanthera/Syrah/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Apple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Apple.icns -------------------------------------------------------------------------------- /OC/Resources/Image/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Dot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtApple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtApple.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtLinux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtLinux.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtOther.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtOther.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtResetNVRAM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtShell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtTool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ExtWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ExtWindows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernBackground-back.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernBackground-back.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernBackground.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernBackground.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernBtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernBtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernCursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernDot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernDot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernEnter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernEnter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernLeft.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernLeft.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernLock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernLock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernPassword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernPassword.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernResetNVRAM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernRestart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernRestart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernRight.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernRight.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernSelected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernSelector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernSetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernSetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernShell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernTool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ModernWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ModernWindows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldBtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldBtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldCursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldDot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldDot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldEnter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldEnter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldLeft.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldLeft.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldLock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldLock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldPassword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldPassword.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldRestart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldRestart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldRight.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldRight.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldSelected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldSelector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldSetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldSetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldShell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldTool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/OldWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/OldWindows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Other.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Other.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ResetNVRAM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/SetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Tool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Image/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /OC/Tools/ControlMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Tools/ControlMsrE2.efi -------------------------------------------------------------------------------- /OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/OC/config.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sharlion/z170_6700k_hackintosh/HEAD/README.md --------------------------------------------------------------------------------