├── .gitignore ├── CLOVER ├── ACPI │ └── patched │ │ ├── SSDT-BATT-HUAWEI.aml │ │ ├── SSDT-DDGPU-Optimus2.aml │ │ ├── SSDT-DMAC.aml │ │ ├── SSDT-FnKey.aml │ │ ├── SSDT-GPI0.aml │ │ ├── SSDT-GPRW.aml │ │ ├── SSDT-HRT.aml │ │ ├── SSDT-MCHC.aml │ │ ├── SSDT-MEM2.aml │ │ ├── SSDT-PLUG-PR.PR00.aml │ │ ├── SSDT-PMCR.aml │ │ ├── SSDT-PNLF.aml │ │ ├── SSDT-PTSWAK-Optimus2.aml │ │ ├── SSDT-RMCF.aml │ │ ├── SSDT-RMNE.aml │ │ ├── SSDT-SBUS.aml │ │ ├── SSDT-TB3HP.aml │ │ ├── SSDT-TPL1.aml │ │ ├── SSDT-UIAC.aml │ │ ├── SSDT-USBX.aml │ │ └── SSDT-XOSI.aml ├── CLOVERX64.efi ├── config.plist ├── drivers │ └── UEFI │ │ ├── ApfsDriverLoader.efi │ │ ├── AppleImageLoader.efi │ │ ├── AppleKeyFeeder.efi │ │ ├── AppleUISupport.efi │ │ ├── AptioInputFix.efi │ │ ├── AptioMemoryFix.efi │ │ ├── AudioDxe.efi │ │ ├── CsmVideoDxe.efi │ │ ├── DataHubDxe.efi │ │ ├── FSInject.efi │ │ ├── HFSPlus.efi │ │ └── VirtualSmc.efi ├── kexts │ └── Other │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ │ ├── CPUFriend.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── CPUFriend │ │ ├── CPUFriendDataProvider.kext │ │ └── Contents │ │ │ └── Info.plist │ │ ├── CodecCommander.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── CodecCommander │ │ │ ├── Resources │ │ │ └── Samples │ │ │ │ ├── SSDT-ALC1220.dsl │ │ │ │ ├── SSDT-ALC256-insanelydeepak.dsl │ │ │ │ ├── SSDT-ALC256-vbourachot.dsl │ │ │ │ ├── SSDT-ALC280.dsl │ │ │ │ ├── SSDT-ALC283.dsl │ │ │ │ ├── SSDT-ALC298.dsl │ │ │ │ ├── SSDT-ALC298a.dsl │ │ │ │ ├── SSDT-ALC668.dsl │ │ │ │ ├── SSDT-AppleALC.dsl │ │ │ │ └── SSDT-CX20752.dsl │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── HibernationFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── HibernationFixup │ │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ │ ├── IntelBluetoothInjector.kext │ │ └── Contents │ │ │ └── Info.plist │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ │ ├── NoTouchID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── NoTouchID │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── NullEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NullEthernet │ │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── PlugIns │ │ │ ├── SMCBatteryManager.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── SMCBatteryManager │ │ │ ├── SMCLightSensor.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── SMCLightSensor │ │ │ ├── SMCProcessor.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── SMCProcessor │ │ │ └── SMCSuperIO.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ └── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooGPIO │ │ │ ├── VoodooI2CServices.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooI2CServices │ │ │ ├── VoodooInput.kext.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── VoodooInput │ │ │ └── VoodooInput.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── VoodooI2CHID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooI2CHID │ │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns │ │ │ ├── VoodooInput.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooInput │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Trackpad │ │ ├── WhateverGreen.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── WhateverGreen │ │ └── itlwm.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── itlwm ├── themes │ ├── Huawei │ │ ├── background.png │ │ ├── font.png │ │ ├── huawei-logo.png │ │ ├── icons │ │ │ ├── func_about.png │ │ │ ├── func_clover.png │ │ │ ├── func_help.png │ │ │ ├── func_options.png │ │ │ ├── func_reset.png │ │ │ ├── func_secureboot.png │ │ │ ├── func_secureboot_config.png │ │ │ ├── func_shutdown.png │ │ │ ├── os_cougar.png │ │ │ ├── os_legacy.png │ │ │ ├── os_lion.png │ │ │ ├── os_mac.png │ │ │ ├── os_mav.png │ │ │ ├── os_vista.png │ │ │ ├── os_yos.png │ │ │ ├── pointer.png │ │ │ ├── tool_shell.png │ │ │ ├── vol_clover.png │ │ │ ├── vol_external.png │ │ │ ├── vol_firewire.png │ │ │ ├── vol_internal.png │ │ │ ├── vol_internal_ext3.png │ │ │ ├── vol_internal_hfs.png │ │ │ ├── vol_internal_ntfs.png │ │ │ ├── vol_optical.png │ │ │ └── vol_recovery.png │ │ ├── screenshot.png │ │ ├── selection.png │ │ ├── selection_small.png │ │ └── theme.plist │ ├── bootcamp │ │ ├── Font_CPMono_16pt_White.png │ │ ├── Selection_big.png │ │ ├── Selection_small.png │ │ ├── background.png │ │ ├── background_night.png │ │ ├── checkbox.png │ │ ├── checkbox_checked.png │ │ ├── icons │ │ │ ├── boot_linux.icns │ │ │ ├── boot_win.icns │ │ │ ├── boot_win8.icns │ │ │ ├── cd.icns │ │ │ ├── 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_shell.png │ │ │ ├── func_shutdown.png │ │ │ ├── os_antergos.icns │ │ │ ├── os_arch.icns │ │ │ ├── os_cap.icns │ │ │ ├── os_centos.icns │ │ │ ├── os_chrome.icns │ │ │ ├── os_clover.icns │ │ │ ├── os_cougar.icns │ │ │ ├── os_debian.icns │ │ │ ├── os_deepin.icns │ │ │ ├── os_ecomstation.icns │ │ │ ├── os_endless.icns │ │ │ ├── os_eos.icns │ │ │ ├── os_fedora.icns │ │ │ ├── os_freebsd.icns │ │ │ ├── os_freedos.icns │ │ │ ├── os_gentoo.icns │ │ │ ├── os_grub.icns │ │ │ ├── os_hsierra.icns │ │ │ ├── os_kali.icns │ │ │ ├── os_knoppix.icns │ │ │ ├── os_kubuntu.icns │ │ │ ├── os_legacy.icns │ │ │ ├── os_leo.icns │ │ │ ├── os_linux.icns │ │ │ ├── os_lion.icns │ │ │ ├── os_mac.icns │ │ │ ├── os_manjaro.icns │ │ │ ├── os_mav.icns │ │ │ ├── os_mint.icns │ │ │ ├── os_moja.icns │ │ │ ├── os_moja_alt.icns │ │ │ ├── os_netbsd.icns │ │ │ ├── os_openbsd.icns │ │ │ ├── os_pclinux.icns │ │ │ ├── os_phoenix.icns │ │ │ ├── os_puppy.icns │ │ │ ├── os_react.icns │ │ │ ├── os_recovery.icns │ │ │ ├── os_redhat.icns │ │ │ ├── os_remix.icns │ │ │ ├── os_sierra.icns │ │ │ ├── os_slackware.icns │ │ │ ├── os_snow.icns │ │ │ ├── os_solaris.icns │ │ │ ├── os_solus.icns │ │ │ ├── os_suse.icns │ │ │ ├── os_tiger.icns │ │ │ ├── os_ubuntu.icns │ │ │ ├── os_unknown.icns │ │ │ ├── os_vista.icns │ │ │ ├── os_win.icns │ │ │ ├── os_xubuntu.icns │ │ │ ├── os_yos.icns │ │ │ ├── os_zorin.icns │ │ │ ├── pointer.icns │ │ │ ├── pointer.png │ │ │ ├── tool_shell.png │ │ │ ├── vol_clover.icns │ │ │ ├── vol_external.icns │ │ │ ├── vol_firewire.icns │ │ │ ├── vol_internal.icns │ │ │ ├── vol_internal_apfs.icns │ │ │ ├── vol_internal_ext3.icns │ │ │ ├── vol_internal_hfs.icns │ │ │ ├── vol_internal_ntfs.icns │ │ │ ├── vol_optical.icns │ │ │ └── vol_recovery.icns │ │ ├── logo.png │ │ ├── radio_button.png │ │ ├── radio_button_selected.png │ │ ├── screenshot.png │ │ ├── scrollbar │ │ │ ├── bar_end.png │ │ │ ├── bar_fill.png │ │ │ ├── bar_start.png │ │ │ ├── down_button.png │ │ │ ├── scroll_end.png │ │ │ ├── scroll_fill.png │ │ │ ├── scroll_start.png │ │ │ └── up_button.png │ │ └── theme.plist │ ├── christmas │ │ ├── Anim_1_Logo │ │ │ ├── Anim_1_Logo_000.png │ │ │ ├── Anim_1_Logo_001.png │ │ │ ├── Anim_1_Logo_002.png │ │ │ ├── Anim_1_Logo_003.png │ │ │ ├── Anim_1_Logo_004.png │ │ │ ├── Anim_1_Logo_005.png │ │ │ ├── Anim_1_Logo_006.png │ │ │ ├── Anim_1_Logo_007.png │ │ │ ├── Anim_1_Logo_008.png │ │ │ ├── Anim_1_Logo_009.png │ │ │ ├── Anim_1_Logo_010.png │ │ │ ├── Anim_1_Logo_011.png │ │ │ ├── Anim_1_Logo_012.png │ │ │ ├── Anim_1_Logo_013.png │ │ │ ├── Anim_1_Logo_014.png │ │ │ ├── Anim_1_Logo_015.png │ │ │ ├── Anim_1_Logo_016.png │ │ │ ├── Anim_1_Logo_017.png │ │ │ ├── Anim_1_Logo_018.png │ │ │ ├── Anim_1_Logo_019.png │ │ │ ├── Anim_1_Logo_020.png │ │ │ ├── Anim_1_Logo_021.png │ │ │ ├── Anim_1_Logo_022.png │ │ │ ├── Anim_1_Logo_023.png │ │ │ ├── Anim_1_Logo_024.png │ │ │ └── Anim_1_Logo_025.png │ │ ├── Selection_big.png │ │ ├── Selection_small.png │ │ ├── WoR_NovaMono_9W_A.png │ │ ├── background.png │ │ ├── icons │ │ │ ├── func_about.png │ │ │ ├── func_clover.png │ │ │ ├── func_options.png │ │ │ ├── func_reset.png │ │ │ ├── func_secureboot.png │ │ │ ├── func_secureboot_config.png │ │ │ ├── func_shutdown.png │ │ │ ├── os_cap.icns │ │ │ ├── os_clover.icns │ │ │ ├── os_cougar.icns │ │ │ ├── os_hsierra.icns │ │ │ ├── os_linux.icns │ │ │ ├── os_lion.icns │ │ │ ├── os_mav.icns │ │ │ ├── os_sierra.icns │ │ │ ├── os_snow.icns │ │ │ ├── os_ubuntu.icns │ │ │ ├── os_vista.icns │ │ │ ├── os_win.icns │ │ │ ├── os_yos.icns │ │ │ ├── pointer.png │ │ │ ├── tool_shell.png │ │ │ ├── vol_clover.icns │ │ │ ├── vol_external.icns │ │ │ ├── vol_internal.icns │ │ │ ├── vol_internal_ext3.icns │ │ │ ├── vol_internal_hfs.icns │ │ │ ├── vol_internal_ntfs.icns │ │ │ ├── vol_optical.icns │ │ │ └── vol_recovery.icns │ │ ├── logo.png │ │ ├── screenshot.png │ │ └── theme.plist │ ├── embedded │ │ ├── screenshot.png │ │ └── theme.plist │ ├── logo_main.png │ ├── newyear │ │ ├── arrow-144.png │ │ ├── arrow-64.png │ │ ├── dark-wide.png │ │ ├── elka_1 │ │ │ ├── elka_1_000.png │ │ │ ├── elka_1_001.png │ │ │ ├── elka_1_002.png │ │ │ ├── elka_1_003.png │ │ │ ├── elka_1_004.png │ │ │ ├── elka_1_005.png │ │ │ ├── elka_1_006.png │ │ │ ├── elka_1_007.png │ │ │ ├── elka_1_008.png │ │ │ ├── elka_1_009.png │ │ │ ├── elka_1_010.png │ │ │ ├── elka_1_011.png │ │ │ ├── elka_1_012.png │ │ │ ├── elka_1_013.png │ │ │ ├── elka_1_014.png │ │ │ ├── elka_1_015.png │ │ │ ├── elka_1_016.png │ │ │ ├── elka_1_017.png │ │ │ ├── elka_1_018.png │ │ │ ├── elka_1_019.png │ │ │ ├── elka_1_020.png │ │ │ ├── elka_1_021.png │ │ │ ├── elka_1_022.png │ │ │ ├── elka_1_023.png │ │ │ ├── elka_1_024.png │ │ │ ├── elka_1_025.png │ │ │ └── elka_1_026.png │ │ ├── happy.png │ │ ├── icons │ │ │ ├── func_about.png │ │ │ ├── func_clover.png │ │ │ ├── func_help.png │ │ │ ├── func_options.png │ │ │ ├── func_reset.png │ │ │ ├── func_shutdown.png │ │ │ ├── os_cap.icns │ │ │ ├── os_clover.icns │ │ │ ├── os_cougar.icns │ │ │ ├── os_freebsd.icns │ │ │ ├── os_freedos.icns │ │ │ ├── os_hsierra.icns │ │ │ ├── os_legacy.icns │ │ │ ├── os_leo.icns │ │ │ ├── os_linux.icns │ │ │ ├── os_lion.icns │ │ │ ├── os_mac.icns │ │ │ ├── os_mav.icns │ │ │ ├── os_sierra.icns │ │ │ ├── os_snow.icns │ │ │ ├── os_tiger.icns │ │ │ ├── os_vista.icns │ │ │ ├── pointer.png │ │ │ ├── tool_shell.png │ │ │ ├── vol_clover.icns │ │ │ ├── vol_external.icns │ │ │ ├── vol_firewire.icns │ │ │ ├── vol_internal.icns │ │ │ ├── vol_internal_hfs.icns │ │ │ ├── vol_optical.icns │ │ │ └── vol_recovery.icns │ │ ├── screenshot.png │ │ ├── scrollbar │ │ │ ├── bar_end.png │ │ │ ├── bar_fill.png │ │ │ ├── bar_start.png │ │ │ ├── down_button.png │ │ │ ├── scroll_end.png │ │ │ ├── scroll_fill.png │ │ │ ├── scroll_start.png │ │ │ └── up_button.png │ │ ├── snow.png │ │ └── theme.plist │ ├── pointer-metal.png │ └── random │ │ └── theme.plist └── tools │ ├── Shell.inf │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ └── bdmesg.efi ├── Configs ├── Deprecated │ ├── Liteon │ │ ├── config-10.14.3.plist │ │ └── config-10.14.4.plist │ ├── Toshiba │ │ ├── config-10.14.3.plist │ │ └── config-10.14.4.plist │ ├── config-kbl.plist │ ├── config-pre 10.14.3.plist │ └── config-skl.plist ├── config-kbl-invalid.plist └── config.plist ├── Help a Broke Student out ├── paypal.png ├── venmo.jpg ├── 微信支付.jpg └── 支付宝.jpg ├── Intel-WiFi ├── HeliPort.app │ └── Contents │ │ ├── Frameworks │ │ ├── KeychainAccess.framework │ │ │ ├── KeychainAccess │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── KeychainAccess │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── Sparkle.framework │ │ │ ├── Resources │ │ │ ├── Sparkle │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ ├── Autoupdate.app │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ │ ├── Autoupdate │ │ │ │ │ │ │ └── fileop │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ ├── DarkAqua.css │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SUModelTranslation.plist │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── Sparkle │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreFoundation.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ ├── libswiftMetal.dylib │ │ ├── libswiftObjectiveC.dylib │ │ ├── libswiftQuartzCore.dylib │ │ ├── libswiftXPC.dylib │ │ └── libswiftos.dylib │ │ ├── Info.plist │ │ ├── Library │ │ └── LoginItems │ │ │ └── HeliPort Launcher.app │ │ │ └── Contents │ │ │ ├── Frameworks │ │ │ ├── libswiftCore.dylib │ │ │ ├── libswiftCoreFoundation.dylib │ │ │ ├── libswiftCoreGraphics.dylib │ │ │ ├── libswiftDarwin.dylib │ │ │ ├── libswiftDispatch.dylib │ │ │ ├── libswiftFoundation.dylib │ │ │ ├── libswiftIOKit.dylib │ │ │ └── libswiftObjectiveC.dylib │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── HeliPort Launcher │ │ │ └── PkgInfo │ │ ├── MacOS │ │ └── HeliPort │ │ ├── PkgInfo │ │ └── Resources │ │ ├── AppIcon.icns │ │ ├── Assets.car │ │ ├── Base.lproj │ │ └── MainMenu.nib │ │ ├── Credits.rtf │ │ ├── README.md │ │ ├── cs.lproj │ │ └── Localizable.strings │ │ ├── de.lproj │ │ └── Localizable.strings │ │ ├── el.lproj │ │ └── Localizable.strings │ │ ├── es.lproj │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ └── Localizable.strings │ │ ├── id.lproj │ │ └── Localizable.strings │ │ ├── it.lproj │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ └── Localizable.strings │ │ ├── pt-PT.lproj │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ └── Localizable.strings │ │ └── zh-Hans.lproj │ │ └── Localizable.strings └── README.md ├── README-CN.md ├── README-ESP.md ├── README.md ├── USB-EFI ├── BOOT │ ├── .empty │ └── BOOTX64.efi ├── CLOVER │ ├── ACPI │ │ ├── WINDOWS │ │ │ └── .empty │ │ ├── origin │ │ │ └── .empty │ │ └── patched │ │ │ ├── .empty │ │ │ └── SSDT-EC.aml │ ├── CLOVERX64.efi │ ├── OEM │ │ └── SystemProductName │ │ │ ├── UEFI │ │ │ └── config-sample.plist │ │ │ └── config-sample.plist │ ├── ROM │ │ └── .empty │ ├── config.plist │ ├── doc │ │ ├── HowToFixDsdt.txt │ │ ├── HowToInstallOSX.txt │ │ ├── UEFI boot with Clover.rtf │ │ ├── bcfg.txt │ │ └── boot1f32-install.sh │ ├── drivers │ │ ├── BIOS │ │ │ └── ApfsDriverLoader.efi │ │ └── UEFI │ │ │ ├── ApfsDriverLoader.efi │ │ │ ├── AptioInputFix.efi │ │ │ ├── AptioMemoryFix.efi │ │ │ ├── AudioDxe.efi │ │ │ ├── CsmVideoDxe.efi │ │ │ ├── DataHubDxe.efi │ │ │ ├── FSInject.efi │ │ │ ├── HFSPlus.efi │ │ │ └── VirtualSmc.efi │ ├── kexts │ │ └── Other │ │ │ ├── .empty │ │ │ ├── FakePCIID.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── FakePCIID │ │ │ ├── Lilu.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── Lilu │ │ │ ├── NoTouchID.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── NoTouchID │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── USBInjectAll.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── USBInjectAll │ │ │ ├── VirtualSMC.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VirtualSMC │ │ │ │ └── PlugIns │ │ │ │ ├── SMCBatteryManager.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── SMCBatteryManager │ │ │ │ ├── SMCLightSensor.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── SMCLightSensor │ │ │ │ ├── SMCProcessor.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── SMCProcessor │ │ │ │ └── SMCSuperIO.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── SMCSuperIO │ │ │ ├── VoodooI2C.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooI2C │ │ │ │ ├── PlugIns │ │ │ │ ├── VoodooGPIO.kext │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── VoodooGPIO │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── VoodooI2CServices.kext │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooI2CServices │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── VoodooI2CHID.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooI2CHID │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── VoodooPS2Controller.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooPS2Controller │ │ │ │ └── PlugIns │ │ │ │ ├── VoodooPS2Keyboard.kext.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── VoodooPS2Keyboard │ │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── VoodooPS2Keyboard │ │ │ │ ├── VoodooPS2Mouse.kext.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── VoodooPS2Mouse │ │ │ │ ├── VoodooPS2Mouse.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── VoodooPS2Mouse │ │ │ │ ├── VoodooPS2Trackpad.kext.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── VoodooPS2Trackpad │ │ │ │ └── VoodooPS2Trackpad.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Trackpad │ │ │ └── WhateverGreen.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── WhateverGreen │ ├── misc │ │ └── .empty │ ├── themes │ │ ├── christmas │ │ │ ├── Anim_1_Logo │ │ │ │ ├── Anim_1_Logo_000.png │ │ │ │ ├── Anim_1_Logo_001.png │ │ │ │ ├── Anim_1_Logo_002.png │ │ │ │ ├── Anim_1_Logo_003.png │ │ │ │ ├── Anim_1_Logo_004.png │ │ │ │ ├── Anim_1_Logo_005.png │ │ │ │ ├── Anim_1_Logo_006.png │ │ │ │ ├── Anim_1_Logo_007.png │ │ │ │ ├── Anim_1_Logo_008.png │ │ │ │ ├── Anim_1_Logo_009.png │ │ │ │ ├── Anim_1_Logo_010.png │ │ │ │ ├── Anim_1_Logo_011.png │ │ │ │ ├── Anim_1_Logo_012.png │ │ │ │ ├── Anim_1_Logo_013.png │ │ │ │ ├── Anim_1_Logo_014.png │ │ │ │ ├── Anim_1_Logo_015.png │ │ │ │ ├── Anim_1_Logo_016.png │ │ │ │ ├── Anim_1_Logo_017.png │ │ │ │ ├── Anim_1_Logo_018.png │ │ │ │ ├── Anim_1_Logo_019.png │ │ │ │ ├── Anim_1_Logo_020.png │ │ │ │ ├── Anim_1_Logo_021.png │ │ │ │ ├── Anim_1_Logo_022.png │ │ │ │ ├── Anim_1_Logo_023.png │ │ │ │ ├── Anim_1_Logo_024.png │ │ │ │ └── Anim_1_Logo_025.png │ │ │ ├── Selection_big.png │ │ │ ├── Selection_small.png │ │ │ ├── WoR_NovaMono_9W_A.png │ │ │ ├── background.png │ │ │ ├── icons │ │ │ │ ├── func_about.png │ │ │ │ ├── func_clover.png │ │ │ │ ├── func_options.png │ │ │ │ ├── func_reset.png │ │ │ │ ├── func_secureboot.png │ │ │ │ ├── func_secureboot_config.png │ │ │ │ ├── func_shutdown.png │ │ │ │ ├── os_cap.icns │ │ │ │ ├── os_clover.icns │ │ │ │ ├── os_cougar.icns │ │ │ │ ├── os_hsierra.icns │ │ │ │ ├── os_linux.icns │ │ │ │ ├── os_lion.icns │ │ │ │ ├── os_mav.icns │ │ │ │ ├── os_moja.icns │ │ │ │ ├── os_sierra.icns │ │ │ │ ├── os_snow.icns │ │ │ │ ├── os_ubuntu.icns │ │ │ │ ├── os_vista.icns │ │ │ │ ├── os_win.icns │ │ │ │ ├── os_yos.icns │ │ │ │ ├── pointer.png │ │ │ │ ├── tool_shell.png │ │ │ │ ├── vol_clover.icns │ │ │ │ ├── vol_external.icns │ │ │ │ ├── vol_internal.icns │ │ │ │ ├── vol_internal_apfs.icns │ │ │ │ ├── vol_internal_ext3.icns │ │ │ │ ├── vol_internal_hfs.icns │ │ │ │ ├── vol_internal_ntfs.icns │ │ │ │ ├── vol_optical.icns │ │ │ │ └── vol_recovery.icns │ │ │ ├── logo.png │ │ │ ├── screenshot.png │ │ │ └── theme.plist │ │ ├── embedded │ │ │ ├── screenshot.png │ │ │ └── theme.plist │ │ ├── logo_main.png │ │ ├── newyear │ │ │ ├── arrow-144.png │ │ │ ├── arrow-64.png │ │ │ ├── dark-wide.png │ │ │ ├── elka_1 │ │ │ │ ├── elka_1_000.png │ │ │ │ ├── elka_1_001.png │ │ │ │ ├── elka_1_002.png │ │ │ │ ├── elka_1_003.png │ │ │ │ ├── elka_1_004.png │ │ │ │ ├── elka_1_005.png │ │ │ │ ├── elka_1_006.png │ │ │ │ ├── elka_1_007.png │ │ │ │ ├── elka_1_008.png │ │ │ │ ├── elka_1_009.png │ │ │ │ ├── elka_1_010.png │ │ │ │ ├── elka_1_011.png │ │ │ │ ├── elka_1_012.png │ │ │ │ ├── elka_1_013.png │ │ │ │ ├── elka_1_014.png │ │ │ │ ├── elka_1_015.png │ │ │ │ ├── elka_1_016.png │ │ │ │ ├── elka_1_017.png │ │ │ │ ├── elka_1_018.png │ │ │ │ ├── elka_1_019.png │ │ │ │ ├── elka_1_020.png │ │ │ │ ├── elka_1_021.png │ │ │ │ ├── elka_1_022.png │ │ │ │ ├── elka_1_023.png │ │ │ │ ├── elka_1_024.png │ │ │ │ ├── elka_1_025.png │ │ │ │ └── elka_1_026.png │ │ │ ├── happy.png │ │ │ ├── icons │ │ │ │ ├── func_about.png │ │ │ │ ├── func_clover.png │ │ │ │ ├── func_help.png │ │ │ │ ├── func_options.png │ │ │ │ ├── func_reset.png │ │ │ │ ├── func_shutdown.png │ │ │ │ ├── os_cap.icns │ │ │ │ ├── os_clover.icns │ │ │ │ ├── os_cougar.icns │ │ │ │ ├── os_freebsd.icns │ │ │ │ ├── os_freedos.icns │ │ │ │ ├── os_hsierra.icns │ │ │ │ ├── os_legacy.icns │ │ │ │ ├── os_leo.icns │ │ │ │ ├── os_linux.icns │ │ │ │ ├── os_lion.icns │ │ │ │ ├── os_mac.icns │ │ │ │ ├── os_mav.icns │ │ │ │ ├── os_moja.icns │ │ │ │ ├── os_sierra.icns │ │ │ │ ├── os_snow.icns │ │ │ │ ├── os_tiger.icns │ │ │ │ ├── os_vista.icns │ │ │ │ ├── os_win.icns │ │ │ │ ├── os_yos.icns │ │ │ │ ├── pointer.png │ │ │ │ ├── tool_shell.png │ │ │ │ ├── vol_clover.icns │ │ │ │ ├── vol_external.icns │ │ │ │ ├── vol_firewire.icns │ │ │ │ ├── vol_internal.icns │ │ │ │ ├── vol_internal_hfs.icns │ │ │ │ ├── vol_optical.icns │ │ │ │ └── vol_recovery.icns │ │ │ ├── screenshot.png │ │ │ ├── scrollbar │ │ │ │ ├── bar_end.png │ │ │ │ ├── bar_fill.png │ │ │ │ ├── bar_start.png │ │ │ │ ├── down_button.png │ │ │ │ ├── scroll_end.png │ │ │ │ ├── scroll_fill.png │ │ │ │ ├── scroll_start.png │ │ │ │ └── up_button.png │ │ │ ├── snow.png │ │ │ └── theme.plist │ │ ├── pointer-metal.png │ │ └── random │ │ │ └── theme.plist │ └── tools │ │ ├── Shell32.efi │ │ ├── Shell64.efi │ │ ├── Shell64U.efi │ │ └── bdmesg.efi └── Clover_Install_Log.txt ├── autoinstaller.command ├── install-without-windows.md ├── onekey_installer.sh └── voltageshift ├── VoltageShift.kext └── Contents │ ├── Info.plist │ ├── MacOS │ └── VoltageShift │ ├── Resources │ └── en.lproj │ │ └── InfoPlist.strings │ └── _CodeSignature │ └── CodeResources ├── voltage_customizer.command └── voltageshift /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | **/.DS_Store 3 | -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-BATT-HUAWEI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-BATT-HUAWEI.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-DDGPU-Optimus2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-DDGPU-Optimus2.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-DMAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-DMAC.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-FnKey.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-FnKey.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-GPI0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-GPI0.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-GPRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-GPRW.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-HRT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-HRT.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-MCHC.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-MEM2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-MEM2.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-PLUG-PR.PR00.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-PLUG-PR.PR00.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-PMCR.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-PMCR.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-PNLF.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-PTSWAK-Optimus2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-PTSWAK-Optimus2.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-RMCF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-RMCF.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-RMNE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-RMNE.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-SBUS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-SBUS.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-TB3HP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-TB3HP.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-TPL1.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-TPL1.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-UIAC.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-USBX.aml -------------------------------------------------------------------------------- /CLOVER/ACPI/patched/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/ACPI/patched/SSDT-XOSI.aml -------------------------------------------------------------------------------- /CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/config.plist -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/AppleImageLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/AppleImageLoader.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/AppleKeyFeeder.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/AppleKeyFeeder.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/AppleUISupport.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/AppleUISupport.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/AptioInputFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/AptioInputFix.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/CsmVideoDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/CsmVideoDxe.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/DataHubDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/DataHubDxe.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /CLOVER/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CPUFriend.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CPUFriendDataProvider.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CPUFriendDataProvider.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/MacOS/CodecCommander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/MacOS/CodecCommander -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC1220.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC1220.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC256-insanelydeepak.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC256-insanelydeepak.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC256-vbourachot.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC256-vbourachot.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC280.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC280.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC283.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC283.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC298.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC298.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC298a.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC298a.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC668.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC668.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-AppleALC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-AppleALC.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-CX20752.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/Samples/SSDT-CX20752.dsl -------------------------------------------------------------------------------- /CLOVER/kexts/Other/CodecCommander.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/CodecCommander.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /CLOVER/kexts/Other/HibernationFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/HibernationFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/HibernationFixup.kext/Contents/MacOS/HibernationFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/HibernationFixup.kext/Contents/MacOS/HibernationFixup -------------------------------------------------------------------------------- /CLOVER/kexts/Other/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /CLOVER/kexts/Other/IntelBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/IntelBluetoothInjector.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NoTouchID.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NoTouchID.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NullEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NullEthernet.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/NullEthernet.kext/Contents/MacOS/NullEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/NullEthernet.kext/Contents/MacOS/NullEthernet -------------------------------------------------------------------------------- /CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /CLOVER/kexts/Other/USBInjectAll.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/USBInjectAll.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCLightSensor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Resources/DWARF/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Resources/DWARF/VoodooInput -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /CLOVER/kexts/Other/itlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/itlwm.kext/Contents/Info.plist -------------------------------------------------------------------------------- /CLOVER/kexts/Other/itlwm.kext/Contents/MacOS/itlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/kexts/Other/itlwm.kext/Contents/MacOS/itlwm -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/background.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/font.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/huawei-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/huawei-logo.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_about.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_clover.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_help.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_options.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_reset.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_secureboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_secureboot.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_secureboot_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_secureboot_config.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/func_shutdown.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_cougar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_cougar.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_legacy.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_lion.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_mac.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_mav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_mav.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_vista.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/os_yos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/os_yos.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/pointer.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/tool_shell.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_clover.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_external.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_firewire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_firewire.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_internal.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_internal_ext3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_internal_ext3.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_internal_hfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_internal_hfs.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_internal_ntfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_internal_ntfs.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_optical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_optical.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/icons/vol_recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/icons/vol_recovery.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/screenshot.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/selection.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/selection_small.png -------------------------------------------------------------------------------- /CLOVER/themes/Huawei/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/Huawei/theme.plist -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/Font_CPMono_16pt_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/Font_CPMono_16pt_White.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/Selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/Selection_big.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/Selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/Selection_small.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/background.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/background_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/background_night.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/checkbox.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/checkbox_checked.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/boot_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/boot_linux.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/boot_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/boot_win.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/boot_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/boot_win8.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/cd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/cd.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/cd_lin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/cd_lin.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/cd_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/cd_mac.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/cd_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/cd_win.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_about.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_clover.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_help.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_options.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_reset.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_shell.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/func_shutdown.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_antergos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_antergos.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_arch.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_cap.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_centos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_centos.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_chrome.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_chrome.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_cougar.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_debian.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_debian.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_deepin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_deepin.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_ecomstation.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_ecomstation.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_endless.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_endless.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_eos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_eos.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_fedora.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_fedora.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_freebsd.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_freedos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_freedos.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_gentoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_gentoo.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_grub.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_grub.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_hsierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_kali.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_kali.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_knoppix.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_knoppix.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_kubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_kubuntu.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_legacy.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_leo.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_linux.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_lion.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_mac.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_manjaro.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_manjaro.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_mav.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_mint.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_mint.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_moja.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_moja.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_moja_alt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_moja_alt.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_netbsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_netbsd.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_openbsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_openbsd.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_pclinux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_pclinux.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_phoenix.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_phoenix.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_puppy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_puppy.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_react.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_react.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_recovery.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_redhat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_redhat.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_remix.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_remix.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_sierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_slackware.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_slackware.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_snow.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_solaris.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_solaris.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_solus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_solus.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_suse.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_suse.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_tiger.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_unknown.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_vista.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_win.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_xubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_xubuntu.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_yos.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/os_zorin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/os_zorin.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/pointer.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/pointer.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/tool_shell.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_external.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_firewire.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_internal.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_internal_apfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_internal_apfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_optical.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/icons/vol_recovery.icns -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/logo.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/radio_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/radio_button.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/radio_button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/radio_button_selected.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/screenshot.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/bar_end.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/bar_start.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/down_button.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/scrollbar/up_button.png -------------------------------------------------------------------------------- /CLOVER/themes/bootcamp/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/bootcamp/theme.plist -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_000.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_001.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_002.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_003.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_004.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_005.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_006.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_007.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_008.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_009.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_010.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_011.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_012.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_013.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_014.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_015.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_016.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_017.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_018.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_019.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_020.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_021.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_022.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_023.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_024.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_025.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Selection_big.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/Selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/Selection_small.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/WoR_NovaMono_9W_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/WoR_NovaMono_9W_A.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/background.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_about.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_clover.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_options.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_reset.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_secureboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_secureboot.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_secureboot_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_secureboot_config.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/func_shutdown.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_cap.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_cougar.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_hsierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_linux.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_lion.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_mav.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_sierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_snow.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_vista.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_win.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/os_yos.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/pointer.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/tool_shell.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_external.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_internal.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_optical.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/icons/vol_recovery.icns -------------------------------------------------------------------------------- /CLOVER/themes/christmas/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/logo.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/screenshot.png -------------------------------------------------------------------------------- /CLOVER/themes/christmas/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/christmas/theme.plist -------------------------------------------------------------------------------- /CLOVER/themes/embedded/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/embedded/screenshot.png -------------------------------------------------------------------------------- /CLOVER/themes/embedded/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/embedded/theme.plist -------------------------------------------------------------------------------- /CLOVER/themes/logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/logo_main.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/arrow-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/arrow-144.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/arrow-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/arrow-64.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/dark-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/dark-wide.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_000.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_001.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_002.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_003.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_004.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_005.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_006.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_007.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_008.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_009.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_010.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_011.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_012.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_013.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_014.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_015.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_016.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_017.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_018.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_019.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_020.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_021.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_022.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_023.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_024.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_025.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/elka_1/elka_1_026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/elka_1/elka_1_026.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/happy.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/func_about.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/func_clover.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/func_help.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/func_options.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/func_reset.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/func_shutdown.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_cap.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_cougar.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_freebsd.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_freedos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_freedos.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_hsierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_legacy.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_leo.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_linux.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_lion.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_mac.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_mav.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_sierra.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_snow.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_tiger.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/os_vista.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/pointer.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/tool_shell.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_clover.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_external.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_firewire.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_internal.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_optical.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/icons/vol_recovery.icns -------------------------------------------------------------------------------- /CLOVER/themes/newyear/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/screenshot.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/bar_end.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/bar_start.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/down_button.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/scrollbar/up_button.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/snow.png -------------------------------------------------------------------------------- /CLOVER/themes/newyear/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/newyear/theme.plist -------------------------------------------------------------------------------- /CLOVER/themes/pointer-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/pointer-metal.png -------------------------------------------------------------------------------- /CLOVER/themes/random/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/themes/random/theme.plist -------------------------------------------------------------------------------- /CLOVER/tools/Shell.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/tools/Shell.inf -------------------------------------------------------------------------------- /CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /Configs/Deprecated/Liteon/config-10.14.3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/Liteon/config-10.14.3.plist -------------------------------------------------------------------------------- /Configs/Deprecated/Liteon/config-10.14.4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/Liteon/config-10.14.4.plist -------------------------------------------------------------------------------- /Configs/Deprecated/Toshiba/config-10.14.3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/Toshiba/config-10.14.3.plist -------------------------------------------------------------------------------- /Configs/Deprecated/Toshiba/config-10.14.4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/Toshiba/config-10.14.4.plist -------------------------------------------------------------------------------- /Configs/Deprecated/config-kbl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/config-kbl.plist -------------------------------------------------------------------------------- /Configs/Deprecated/config-pre 10.14.3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/config-pre 10.14.3.plist -------------------------------------------------------------------------------- /Configs/Deprecated/config-skl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/Deprecated/config-skl.plist -------------------------------------------------------------------------------- /Configs/config-kbl-invalid.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/config-kbl-invalid.plist -------------------------------------------------------------------------------- /Configs/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Configs/config.plist -------------------------------------------------------------------------------- /Help a Broke Student out/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Help a Broke Student out/paypal.png -------------------------------------------------------------------------------- /Help a Broke Student out/venmo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Help a Broke Student out/venmo.jpg -------------------------------------------------------------------------------- /Help a Broke Student out/微信支付.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Help a Broke Student out/微信支付.jpg -------------------------------------------------------------------------------- /Help a Broke Student out/支付宝.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Help a Broke Student out/支付宝.jpg -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/KeychainAccess: -------------------------------------------------------------------------------- 1 | Versions/Current/KeychainAccess -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/Versions/A/KeychainAccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/Versions/A/KeychainAccess -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/KeychainAccess.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/DarkAqua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/DarkAqua.css -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreFoundation.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftMetal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftMetal.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftQuartzCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftQuartzCore.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftXPC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftXPC.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftos.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Frameworks/libswiftos.dylib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Info.plist -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Library/LoginItems/HeliPort Launcher.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Library/LoginItems/HeliPort Launcher.app/Contents/Info.plist -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Library/LoginItems/HeliPort Launcher.app/Contents/MacOS/HeliPort Launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Library/LoginItems/HeliPort Launcher.app/Contents/MacOS/HeliPort Launcher -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Library/LoginItems/HeliPort Launcher.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/MacOS/HeliPort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/MacOS/HeliPort -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/Assets.car -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/Base.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/Base.lproj/MainMenu.nib -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/Credits.rtf -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/README.md -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/HeliPort.app/Contents/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/HeliPort.app/Contents/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Intel-WiFi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/Intel-WiFi/README.md -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/README-CN.md -------------------------------------------------------------------------------- /README-ESP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/README-ESP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/README.md -------------------------------------------------------------------------------- /USB-EFI/BOOT/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/ACPI/WINDOWS/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/CLOVER/ACPI/origin/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/CLOVER/ACPI/patched/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/CLOVER/ACPI/patched/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/ACPI/patched/SSDT-EC.aml -------------------------------------------------------------------------------- /USB-EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/OEM/SystemProductName/UEFI/config-sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/OEM/SystemProductName/UEFI/config-sample.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/OEM/SystemProductName/config-sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/OEM/SystemProductName/config-sample.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/ROM/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/config.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/doc/HowToFixDsdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/doc/HowToFixDsdt.txt -------------------------------------------------------------------------------- /USB-EFI/CLOVER/doc/HowToInstallOSX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/doc/HowToInstallOSX.txt -------------------------------------------------------------------------------- /USB-EFI/CLOVER/doc/UEFI boot with Clover.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/doc/UEFI boot with Clover.rtf -------------------------------------------------------------------------------- /USB-EFI/CLOVER/doc/bcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/doc/bcfg.txt -------------------------------------------------------------------------------- /USB-EFI/CLOVER/doc/boot1f32-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/doc/boot1f32-install.sh -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/AptioInputFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/AptioInputFix.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/CsmVideoDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/CsmVideoDxe.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/DataHubDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/DataHubDxe.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/MacOS/FakePCIID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/MacOS/FakePCIID -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCLightSensor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2C.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooI2CHID.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /USB-EFI/CLOVER/misc/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_000.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_001.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_002.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_003.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_004.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_005.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_006.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_007.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_008.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_009.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_010.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_011.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_012.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_013.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_014.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_015.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_016.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_017.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_018.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_019.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_020.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_021.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_022.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_023.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_024.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Anim_1_Logo/Anim_1_Logo_025.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Selection_big.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/Selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/Selection_small.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/WoR_NovaMono_9W_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/WoR_NovaMono_9W_A.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/background.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_about.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_clover.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_options.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_reset.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_secureboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_secureboot.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_secureboot_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_secureboot_config.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/func_shutdown.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_cap.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_clover.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_cougar.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_hsierra.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_linux.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_lion.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_mav.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_moja.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_moja.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_sierra.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_snow.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_vista.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_win.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/os_yos.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/pointer.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/tool_shell.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_clover.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_external.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_internal.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_internal_apfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_internal_apfs.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_optical.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/icons/vol_recovery.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/logo.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/screenshot.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/christmas/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/christmas/theme.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/embedded/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/embedded/screenshot.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/embedded/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/embedded/theme.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/logo_main.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/arrow-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/arrow-144.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/arrow-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/arrow-64.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/dark-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/dark-wide.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_000.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_001.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_002.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_003.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_004.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_005.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_006.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_007.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_008.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_009.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_010.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_011.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_012.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_013.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_014.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_015.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_016.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_017.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_018.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_019.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_020.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_021.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_022.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_023.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_024.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_025.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/elka_1/elka_1_026.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/happy.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/func_about.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/func_clover.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/func_help.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/func_options.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/func_reset.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/func_shutdown.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_cap.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_clover.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_cougar.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_freebsd.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_freedos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_freedos.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_hsierra.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_legacy.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_leo.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_linux.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_lion.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_mac.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_mav.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_moja.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_moja.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_sierra.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_snow.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_tiger.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_vista.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_win.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/os_yos.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/pointer.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/tool_shell.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_clover.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_external.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_firewire.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_internal.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_optical.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/icons/vol_recovery.icns -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/screenshot.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/bar_end.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/bar_start.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/down_button.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/scrollbar/up_button.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/snow.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/newyear/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/newyear/theme.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/pointer-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/pointer-metal.png -------------------------------------------------------------------------------- /USB-EFI/CLOVER/themes/random/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/themes/random/theme.plist -------------------------------------------------------------------------------- /USB-EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /USB-EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /USB-EFI/Clover_Install_Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/USB-EFI/Clover_Install_Log.txt -------------------------------------------------------------------------------- /autoinstaller.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/autoinstaller.command -------------------------------------------------------------------------------- /install-without-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/install-without-windows.md -------------------------------------------------------------------------------- /onekey_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/onekey_installer.sh -------------------------------------------------------------------------------- /voltageshift/VoltageShift.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/voltageshift/VoltageShift.kext/Contents/Info.plist -------------------------------------------------------------------------------- /voltageshift/VoltageShift.kext/Contents/MacOS/VoltageShift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/voltageshift/VoltageShift.kext/Contents/MacOS/VoltageShift -------------------------------------------------------------------------------- /voltageshift/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/voltageshift/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /voltageshift/VoltageShift.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/voltageshift/VoltageShift.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /voltageshift/voltage_customizer.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/voltageshift/voltage_customizer.command -------------------------------------------------------------------------------- /voltageshift/voltageshift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnodipac886/MatebookXPro-hackintosh/HEAD/voltageshift/voltageshift --------------------------------------------------------------------------------