├── .DS_Store ├── ACPI ├── .DS_Store ├── WINDOWS │ └── .empty ├── origin │ ├── .empty │ ├── APIC.aml │ ├── ASF!.aml │ ├── BGRT.aml │ ├── DBG2.aml │ ├── DMAR.aml │ ├── DSDT.aml │ ├── DumpLog.txt │ ├── ECDT.aml │ ├── FACP.aml │ ├── FACS.aml │ ├── FPDT.aml │ ├── HPET.aml │ ├── MCFG.aml │ ├── MSDM.aml │ ├── RSDP.aml │ ├── RSDT-APIC.aml │ ├── RSDT-ASF!.aml │ ├── RSDT-DSDT.aml │ ├── RSDT-ECDT.aml │ ├── RSDT-FACP.aml │ ├── RSDT-FACS.aml │ ├── RSDT-FPDT.aml │ ├── RSDT-HPET.aml │ ├── RSDT-MCFG.aml │ ├── RSDT-MSDM.aml │ ├── RSDT-SLIC.aml │ ├── RSDT-SSDT-5-TP-SSDT2.aml │ ├── RSDT-SSDT-6-TP-SSDT1.aml │ ├── RSDT-SSDT-7-SataAhci.aml │ ├── RSDT-SSDT-8-Cpu0Ist.aml │ ├── RSDT-SSDT-9-CpuPm.aml │ ├── RSDT-SSDT-x9_0-ApIst.aml │ ├── RSDT-SSDT-x9_1-Cpu0Cst.aml │ ├── RSDT-SSDT-x9_2-ApCst.aml │ ├── RSDT-TCPA.aml │ ├── RSDT-UEFI.aml │ ├── RSDT.aml │ ├── SLIC.aml │ ├── SSDT-0-TP-SSDT2.aml │ ├── SSDT-1-TP-SSDT1.aml │ ├── SSDT-2-SataAhci.aml │ ├── SSDT-3-Cpu0Ist.aml │ ├── SSDT-4-CpuPm.aml │ ├── SSDT-5-IffsAsl.aml │ ├── SSDT-x4_0-ApIst.aml │ ├── SSDT-x4_1-Cpu0Cst.aml │ ├── SSDT-x4_2-ApCst.aml │ ├── TCPA.aml │ ├── UEFI.aml │ └── XSDT.aml └── patched │ ├── .empty │ ├── DSDT.aml │ ├── README.txt │ ├── SSDT-ARPT-RP04-4352.aml │ ├── SSDT-ARPT-RP05-4352.aml │ ├── SSDT-ARPT-RP06-4352.aml │ ├── SSDT-ARPT-RP07-4352.aml │ ├── SSDT-Config.aml │ ├── SSDT-PNLF.aml │ └── SSDT.aml ├── CLOVERX64.efi ├── OEM └── SystemProductName │ ├── UEFI │ └── config-sample.plist │ └── config-sample.plist ├── README.md ├── ROM └── .empty ├── config.plist ├── doc ├── HowToFixDsdt.txt ├── HowToInstallOSX.txt ├── UEFI boot with Clover.rtf ├── bcfg.txt ├── boot1f32-install.sh └── config.plist-FullSample │ ├── Screen Shot 2014-04-04 at 21.18.41.png │ ├── Screen Shot 2014-04-04 at 21.19.13.png │ ├── Screen Shot 2014-04-04 at 21.20.18.png │ ├── Screen Shot 2014-04-04 at 21.20.36.png │ ├── Screen Shot 2014-04-04 at 21.20.50.png │ ├── Screen Shot 2014-04-04 at 21.21.30.png │ ├── Screen Shot 2014-04-04 at 21.22.04.png │ ├── Screen Shot 2014-04-04 at 21.22.24.png │ ├── Screen Shot 2014-04-04 at 21.22.47.png │ ├── Screen Shot 2014-04-04 at 21.23.15.png │ └── Screen Shot 2014-04-04 at 21.23.59.png ├── drivers ├── .DS_Store ├── BIOS │ ├── ApfsDriverLoader.efi │ ├── AudioDxe.efi │ ├── FSInject.efi │ ├── SMCHelper.efi │ └── XhciDxe.efi └── UEFI │ ├── ApfsDriverLoader.efi │ ├── AudioDxe.efi │ ├── DataHubDxe.efi │ ├── EmuVariableUefi.efi │ ├── FSInject.efi │ ├── HFSPlus.efi │ ├── OsxAptioFix3Drv.efi │ ├── OsxFatBinaryDrv.efi │ ├── PartitionDxe.efi │ └── SMCHelper.efi ├── kexts ├── .DS_Store ├── 10.11 │ └── .empty ├── 10.12 │ └── .empty ├── 10.13 │ └── .empty ├── 10.14 │ └── .empty ├── 10.15 │ └── .empty ├── Off │ └── .empty └── Other │ ├── .DS_Store │ ├── .empty │ ├── ACPIBatteryManager.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── ACPIBatteryManager │ ├── BrcmBluetoothInjector.kext │ └── Contents │ │ └── Info.plist │ ├── FakeSMC.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── FakeSMC │ ├── FakeSMC_ACPISensors.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── ACPISensors │ ├── FakeSMC_CPUSensors.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── CPUSensors │ ├── FakeSMC_GPUSensors.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── GPUSensors │ ├── FakeSMC_LPCSensors.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── LPCSensors │ ├── FakeSMC_SMMSensors.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── SMMSensors │ ├── IntelMausiEthernet.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── IntelMausiEthernet │ ├── Lilu.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── Lilu │ ├── VoodooHDA.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooHDA │ │ └── _CodeSignature │ │ └── CodeResources │ ├── VoodooPS2Controller.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooPS2Controller │ │ └── PlugIns │ │ ├── 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 │ ├── aDummyHDA.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleHDA │ │ └── Resources │ │ ├── Platforms.xml.zlib │ │ └── layout3.xml.zlib │ └── realtekALC.kext │ └── Contents │ └── Info.plist ├── misc ├── .empty ├── legacy_boot.log └── preboot.log ├── themes ├── High Sierra │ ├── Selection_big.png │ ├── Selection_small.png │ ├── apple logo.png │ ├── background.png │ ├── font.png │ ├── icons │ │ ├── apple.png │ │ ├── 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_cap.icns │ │ ├── os_clover.icns │ │ ├── os_cougar.icns │ │ ├── os_debian.icns │ │ ├── os_fedora.icns │ │ ├── os_grub.icns │ │ ├── os_high.png │ │ ├── os_kubuntu.icns │ │ ├── os_legacy.icns │ │ ├── os_linux.icns │ │ ├── os_lion.icns │ │ ├── os_mac.icns │ │ ├── os_mav.icns │ │ ├── os_mint.icns │ │ ├── os_recovery.icns │ │ ├── os_recovery.png │ │ ├── os_redhat.icns │ │ ├── os_snow.icns │ │ ├── os_suse.icns │ │ ├── os_tiger.icns │ │ ├── os_ubuntu.icns │ │ ├── os_vista.icns │ │ ├── os_win.icns │ │ ├── os_win7.icns │ │ ├── os_yos.icns │ │ ├── placeholder.icns │ │ ├── pointer.icns │ │ ├── pointer.png │ │ ├── tool_part.icns │ │ ├── tool_rescue.icns │ │ ├── tool_shell.icns │ │ ├── tool_shell.png │ │ ├── vol_clover.icns │ │ ├── vol_external.icns │ │ ├── vol_firewire.icns │ │ ├── vol_internal.icns │ │ ├── vol_internal_ntfs.icns │ │ ├── vol_linux.icns │ │ ├── vol_mac.icns │ │ ├── vol_optical.icns │ │ ├── vol_recovery.icns │ │ └── vol_win.icns │ ├── 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 ├── bootcamp │ ├── Select_trans_big.png │ ├── Select_trans_small.png │ ├── background.png │ ├── icons │ │ ├── boot_linux.icns │ │ ├── boot_win.icns │ │ ├── func_about.png │ │ ├── func_options.png │ │ ├── func_reset.png │ │ ├── func_shutdown.png │ │ ├── os_cougar.icns │ │ ├── os_legacy.icns │ │ ├── os_lion.icns │ │ ├── os_mac.icns │ │ ├── os_snow.icns │ │ ├── os_vista.icns │ │ ├── os_win.icns │ │ ├── os_win7.icns │ │ ├── os_win8.icns │ │ ├── osx.icns │ │ ├── pointer-black.png │ │ ├── pointer.png │ │ ├── tool_shell.png │ │ ├── vol_clover.icns │ │ ├── vol_external.icns │ │ ├── vol_firewire.icns │ │ ├── vol_internal.icns │ │ ├── vol_internal_ext3.icns │ │ ├── vol_internal_hfs.icns │ │ ├── vol_internal_ntfs.icns │ │ ├── vol_netboot.icns │ │ ├── vol_optical.icns │ │ └── vol_recovery.icns │ ├── logo-trans.png │ ├── mpr.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 ├── Shell32.efi ├── Shell64.efi ├── Shell64U.efi ├── bdmesg-32.efi └── bdmesg.efi /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/.DS_Store -------------------------------------------------------------------------------- /ACPI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/.DS_Store -------------------------------------------------------------------------------- /ACPI/WINDOWS/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ACPI/origin/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ACPI/origin/APIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/APIC.aml -------------------------------------------------------------------------------- /ACPI/origin/ASF!.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/ASF!.aml -------------------------------------------------------------------------------- /ACPI/origin/BGRT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/BGRT.aml -------------------------------------------------------------------------------- /ACPI/origin/DBG2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/DBG2.aml -------------------------------------------------------------------------------- /ACPI/origin/DMAR.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/DMAR.aml -------------------------------------------------------------------------------- /ACPI/origin/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/DSDT.aml -------------------------------------------------------------------------------- /ACPI/origin/DumpLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/DumpLog.txt -------------------------------------------------------------------------------- /ACPI/origin/ECDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/ECDT.aml -------------------------------------------------------------------------------- /ACPI/origin/FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/FACP.aml -------------------------------------------------------------------------------- /ACPI/origin/FACS.aml: -------------------------------------------------------------------------------- 1 | FACS@ -------------------------------------------------------------------------------- /ACPI/origin/FPDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/FPDT.aml -------------------------------------------------------------------------------- /ACPI/origin/HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/HPET.aml -------------------------------------------------------------------------------- /ACPI/origin/MCFG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/MCFG.aml -------------------------------------------------------------------------------- /ACPI/origin/MSDM.aml: -------------------------------------------------------------------------------- 1 | MSDMUoLENOVOTP-G2 'PTL CDN22-GK2Q6-6XFV6-7MC9Q-9D4FC -------------------------------------------------------------------------------- /ACPI/origin/RSDP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDP.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-APIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-APIC.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-ASF!.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-ASF!.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-DSDT.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-ECDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-ECDT.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-FACP.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-FACS.aml: -------------------------------------------------------------------------------- 1 | FACS@ -------------------------------------------------------------------------------- /ACPI/origin/RSDT-FPDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-FPDT.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-HPET.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-MCFG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-MCFG.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-MSDM.aml: -------------------------------------------------------------------------------- 1 | MSDMUoLENOVOTP-G2 'PTL CDN22-GK2Q6-6XFV6-7MC9Q-9D4FC -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SLIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SLIC.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-5-TP-SSDT2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-5-TP-SSDT2.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-6-TP-SSDT1.aml: -------------------------------------------------------------------------------- 1 | SSDT3aLENOVOTP-SSDT1INTL  \ 2 | KOU1[! 3 | d -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-7-SataAhci.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-7-SataAhci.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-8-Cpu0Ist.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-8-Cpu0Ist.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-9-CpuPm.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-9-CpuPm.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-x9_0-ApIst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-x9_0-ApIst.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-x9_1-Cpu0Cst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-x9_1-Cpu0Cst.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-SSDT-x9_2-ApCst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-SSDT-x9_2-ApCst.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-TCPA.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-TCPA.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT-UEFI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT-UEFI.aml -------------------------------------------------------------------------------- /ACPI/origin/RSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/RSDT.aml -------------------------------------------------------------------------------- /ACPI/origin/SLIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SLIC.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-0-TP-SSDT2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-0-TP-SSDT2.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-1-TP-SSDT1.aml: -------------------------------------------------------------------------------- 1 | SSDT3aLENOVOTP-SSDT1INTL  \ 2 | KOU1[! 3 | d -------------------------------------------------------------------------------- /ACPI/origin/SSDT-2-SataAhci.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-2-SataAhci.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-3-Cpu0Ist.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-3-Cpu0Ist.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-4-CpuPm.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-4-CpuPm.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-5-IffsAsl.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-5-IffsAsl.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-x4_0-ApIst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-x4_0-ApIst.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-x4_1-Cpu0Cst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-x4_1-Cpu0Cst.aml -------------------------------------------------------------------------------- /ACPI/origin/SSDT-x4_2-ApCst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/SSDT-x4_2-ApCst.aml -------------------------------------------------------------------------------- /ACPI/origin/TCPA.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/TCPA.aml -------------------------------------------------------------------------------- /ACPI/origin/UEFI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/UEFI.aml -------------------------------------------------------------------------------- /ACPI/origin/XSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/origin/XSDT.aml -------------------------------------------------------------------------------- /ACPI/patched/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ACPI/patched/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/DSDT.aml -------------------------------------------------------------------------------- /ACPI/patched/README.txt: -------------------------------------------------------------------------------- 1 | You must delete SSDT.aml if you are not using Core i7-3520M CPU. 2 | You have to substitute the SSDT.aml with the one SSDT.aml that suits your CPU. -------------------------------------------------------------------------------- /ACPI/patched/SSDT-ARPT-RP04-4352.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT-ARPT-RP04-4352.aml -------------------------------------------------------------------------------- /ACPI/patched/SSDT-ARPT-RP05-4352.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT-ARPT-RP05-4352.aml -------------------------------------------------------------------------------- /ACPI/patched/SSDT-ARPT-RP06-4352.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT-ARPT-RP06-4352.aml -------------------------------------------------------------------------------- /ACPI/patched/SSDT-ARPT-RP07-4352.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT-ARPT-RP07-4352.aml -------------------------------------------------------------------------------- /ACPI/patched/SSDT-Config.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT-Config.aml -------------------------------------------------------------------------------- /ACPI/patched/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT-PNLF.aml -------------------------------------------------------------------------------- /ACPI/patched/SSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/ACPI/patched/SSDT.aml -------------------------------------------------------------------------------- /CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/CLOVERX64.efi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #### 01 June 2020 10.15.5 Update: 2 | - Clover, kexts and drivers updated to the latest 3 | 4 | #### 07 April 2020 10.15.4 Update: 5 | - Clover updated to r5107 6 | - kexts and drivers updated to the latest 7 | - macOS updated to 10.15.4 8 | 9 | #### 30 October 2019 10.15.1 Update: 10 | - Clover updated to r5096 11 | - Lilu and WhateverGreen updated to the latest 12 | 13 | #### 13 October 2019 Update: 14 | - Replaced AppleBacklightFixup.kext with WhateverGreen.kext for future-proof 15 | - SIP set to Enable to avoid future disasters like what google updater did recently. In cases of Clover doesn't install and give an error "Disks need to be read and write", Disable SIP before the installation and set to Enable afterwards. 16 | 17 | #### 09 October 2019 Catalina 10.15 Update: 18 | - bluetooth kext changed, from BrcmFirmwareData.kext and BrcmPatchRAM2.kext to BrcmBluetoothInjector.kext, as the first two were not able to drive the stock bluetooth module running on Catalina. Don't know why 19 | - clover EFI was broken during the first reboot of Catalina installer. Another USB EFI stick was used to boot and finish the installation 20 | - post-installation Clover r5070 was not able to be installed (not compatible to install on macOS drive) - installed to a USB drive then copy the drivers back to the EFI of the macOS drive 21 | - the wifi dongle (Edimax EW-7611ULB) driver is dead in Catalina (not compatible). Use [this](https://github.com/chris1111/Wireless-USB-Adapter) instead 22 | 23 | #### 29 July 2019 Update: 24 | - clear clutters 25 | - '-v' is no longer necessary for successful boot up 26 | - kexts updated to the latest 27 | - Clover Bootloader updated to r5018, driver folder structure changed 28 | - macOS updated to 10.14.6 29 | - if you prefer to use trackpoint instead of trackpad, please refer to [this comment](https://github.com/littlegtplr/Hackintosh-X230-macOS/issues/1) 30 | 31 | #### 26 Sep 2018 Update: 32 | - kexts and drivers were updated to latest 33 | - The repo is compatible with Mojave (the machine is currently running on) 34 | 35 | #### 4 Nov 2018 Update: 36 | - Remove backlight control (PNLF) from DSDT.aml and update the repo 37 | - Include SSDT-PNLF.aml, lilu.kext and AppleBacklightFixup.kext for optimised backlight control. Now the backlight control works properly. Credit goes to RehabMan. [post 1](https://www.tonymacx86.com/threads/solved-applebacklightinjector-isnt-working-on-x230.257601), and [post 2](https://www.tonymacx86.com/threads/guide-laptop-backlight-control-using-applebacklightfixup-kext.218222/) 38 | 39 | # Hackintosh-X230-macOS 40 | 41 | https://imgur.com/a/pKfFYet 42 | 43 | Relevant specs of my X230: 44 | - CPU: i5-3230m 45 | - SSD: Plextor PX-256M2M (APFS is used without turning off trim, no speed decreases noticed) 46 | - Bluetooth: Broadcom BCM20702A0 (come with my x230 but need extra kext to work properly. In my case, BrcmPatchRAM2.kext and BrcmFirmwareData.kext from RehabMan/OS-X-BrcmPatchRAM are necessary. https://bitbucket.org/RehabMan/os-x-brcmpatchram info credit goes to /u/stormy90 on reddit https://www.reddit.com/r/hackintosh/comments/3t5bly/bluetooth_not_working_on_el_capitan_broadcom/ ) 47 | - WiFi dongle: Edimax EW-7611ULB (its bluetooth is invisible to macOS, or choose EW-7811Un for a WiFi only solution) 48 | 49 | The files used for this hackintosh are mainly from xxx10101xxx on github - https://github.com/xxx10101xxx/ThinkPad-X230-macOS 50 | 51 | The installation of macOS to x230 can be done with the typical vanilla approach: 52 | 1. Prepare a macOS (in this case, it's High Sierra) installation USB stick - https://hackintosher.com/guides/make-macos-flash-drive-installer/ 53 | 2. Install Clover Bootloader to the USB stick, make sure you choose the USB stick as the destination and tick install to UEFI only - https://medium.com/@salbito/installing-clover-on-a-macos-sierra-installer-130705b91bfa 54 | 3. Copy and paste the files of this repository to EFI/Clover/ , to mount the EFI partition, use either Clover Configurator or command line with diskutil - http://osxdaily.com/2013/05/13/mount-unmount-drives-from-the-command-line-in-mac-os-x/ 55 | 4. Generate a serial number with Clover Configurator, go to SMBIOS (on the left sidebar), hit 'Generate New' next to 'Serial Number' for whatever times you like. 56 | 5. Generate a uuid, go to terminal, type 'uuidgen', hit 'enter', copy paste the results to the 'smUUID' on Clover Configurator. 57 | 6. Copy 'Board Serial Number' to 'Rt Variables' - 'MLB', save the plist and quit Clover Configurator. 58 | 7. Set BIOS as indicated in xxx10101xxx's repository. 59 | 8. Boot into the USB stick, install macOS - https://hackintosher.com/guides/macos-high-sierra-hackintosh-install-clover-walkthrough/ 60 | 9. After the installation, install Clover Bootloader to the SSD/HDD of the macOS just installed, as what was did to the USB stick. 61 | 10. Copy and Paste the EFI folder from the USB stick to the EFI paritition of the installed SSD/HDD. Now the macOS should be able to boot up without the USB stick. If not, don't panic, insert the USB stick and boot into the system installed see if there's anything wrong with the EFI partition and try again. 62 | 11. Generate a SSDT for Power Management, follow the procedure suggested by Piker-Alpha - https://github.com/Piker-Alpha/ssdtPRGen.sh 63 | 12. Install WiFi dongle driver (in my case it's Edimax EW-7611ULB or EW-7811Un) - https://www.edimax.com/edimax/download/download/data/edimax/global/download/for_home/wireless_adapters/wireless_adapters_n150/ew-7611ulb 64 | 13. Done! 65 | 66 | Known issues: 67 | 1. d-sub output isn't working - not a news 68 | 2. trackpoint isn't working - both red dot and buttons, at chances they might work but not stable. Trackpad is working fine but nothing better than on windows (x230 users might have known what I'm talking about). For possible solutoin of getting trackpoint to work, see [this post](https://www.reddit.com/r/hackintosh/comments/92wbb7/lenovo_x230_high_sierra/?utm_content=full_comments&utm_medium=message&utm_source=reddit&utm_name=frontpage) 69 | 3. boot/awake animation glitch - minor stuff, but I wasn't able to fix it with the solution suggested by Bizzaro https://github.com/Bizzaro/x230-osx . If anyone knows how to fix it please share it with me. Thanks. 70 | 4. ~~Backlight brightness is set to maximum at boot - In my case this is due to Clover Bootloader overwrite NVRAM's value at boot. It uses 'Backlight Level: 0xFFFF' at boot, this can be check by going to 'Options' - 'Graphics Injector' in Clover Bootloader in the middle of booting. The brightness stays at the previous value before rebooting if '0xFFFF' is deleted, but I seem can't find a way to set empty as default in Clover. If anyone knows how to do it, please share it with me. Thanks. Info credits goes to RehabMan https://www.tonymacx86.com/threads/guide-laptop-backlight-control-using-applebacklightinjector-kext.218222/~~ 71 | ~~1 Aug 2018 Update: the brightness level is preserved after rebooting by deleting EmuVariableUefi-64.efi from drivers64UEFI. But the minimum brightness is still brighter than it used to be on windows. Following procedures suggested in the post above did not fix the issue. If anyone knows how to do it, please feel free to share it. Thanks.~~ 72 | 73 | Hope the info can be helpful for anyone who'd like to install macOS on x230. 74 | -------------------------------------------------------------------------------- /ROM/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | #DisableDrivers 6 | 7 | _NOT_SHOWN_ 8 | 9 | ACPI 10 | 11 | DSDT 12 | 13 | Debug 14 | 15 | DropOEM_DSM 16 | 17 | Fixes 18 | 19 | FixAirport 20 | 21 | FixShutdown 22 | 23 | 24 | Name 25 | DSDT.aml 26 | Patches 27 | 28 | 29 | Comment 30 | Rename GFX0 to IGPU 31 | Disabled 32 | 33 | Find 34 | R0ZYMA== 35 | Replace 36 | SUdQVQ== 37 | 38 | 39 | ReuseFFFF 40 | 41 | 42 | HaltEnabler 43 | 44 | SSDT 45 | 46 | DropOem 47 | 48 | EnableC2 49 | 50 | EnableC4 51 | 52 | EnableC6 53 | 54 | Generate 55 | 56 | CStates 57 | 58 | PStates 59 | 60 | 61 | 62 | 63 | Boot 64 | 65 | Arguments 66 | dart=0 darkwake=0 -xcpm UseKernelCache=Yes 67 | CustomLogo 68 | 69 | Debug 70 | 71 | DefaultVolume 72 | Macintosh HD 73 | Legacy 74 | LegacyBiosDefault 75 | Secure 76 | 77 | Timeout 78 | 1 79 | XMPDetection 80 | 81 | 82 | CPU 83 | 84 | C2 85 | 86 | C4 87 | 88 | C6 89 | 90 | UseARTFrequency 91 | 92 | 93 | ConfigName 94 | Install 95 | Devices 96 | 97 | Audio 98 | 99 | Inject 100 | 3 101 | 102 | FakeID 103 | 104 | ATI 105 | 0x0 106 | IMEI 107 | 0x0 108 | IntelGFX 109 | 0x0 110 | LAN 111 | 0x0 112 | NVidia 113 | 0x0 114 | SATA 115 | 0x0 116 | WIFI 117 | 0x43a014E4 118 | XHCI 119 | 0x0 120 | 121 | USB 122 | 123 | FixOwnership 124 | 125 | Inject 126 | 127 | 128 | 129 | DisableDrivers 130 | 131 | Nothing 132 | 133 | GUI 134 | 135 | Hide 136 | 137 | \EFI\BOOT\BOOTX64.EFI 138 | Preboot 139 | Recovery 140 | 141 | Language 142 | en:0 143 | Mouse 144 | 145 | DoubleClick 146 | 500 147 | Enabled 148 | 149 | Mirror 150 | 151 | Speed 152 | 8 153 | 154 | Scan 155 | 156 | Entries 157 | 158 | Legacy 159 | 160 | Linux 161 | 162 | Tool 163 | 164 | 165 | ScreenResolution 166 | 1366x768 167 | Theme 168 | High Sierra 169 | 170 | Graphics 171 | 172 | Inject 173 | 174 | ATI 175 | 176 | Intel 177 | 178 | NVidia 179 | 180 | 181 | NvidiaSingle 182 | 183 | ig-platform-id 184 | 0x01660003 185 | 186 | KernelAndKextPatches 187 | 188 | AppleIntelCPUPM 189 | 190 | AppleRTC 191 | 192 | Debug 193 | 194 | DellSMBIOSPatch 195 | 196 | KernelCpu 197 | 198 | KernelLapic 199 | 200 | KernelPm 201 | 202 | KernelXCPM 203 | 204 | KextsToPatch 205 | 206 | 207 | Comment 208 | 10.11+-BT4LE-Handoff-Hotspot-lisai9093 209 | Disabled 210 | 211 | Find 212 | SIX/dEdIiwc= 213 | InfoPlistPatch 214 | 215 | Name 216 | IOBluetoothFamily 217 | Replace 218 | Qb4PAAAA60Q= 219 | 220 | 221 | Comment 222 | 10.11+-BCM94352-5GHz-US-FCC-darkvoid 223 | Disabled 224 | 225 | Find 226 | QYP8/3QsSA== 227 | InfoPlistPatch 228 | 229 | Name 230 | AirPortBrcm4360 231 | Replace 232 | ZscGVVPrKw== 233 | 234 | 235 | Comment 236 | 10.12-BCM94352-0x43b114e4-Info.plist-bpresles 237 | Disabled 238 | 239 | Find 240 | PHN0cmluZz5wY2kxNGU0LDQzYmE8L3N0cmluZz4= 241 | InfoPlistPatch 242 | 243 | Name 244 | AirPortBrcm4360 245 | Replace 246 | PHN0cmluZz5wY2kxNGU0LDQzYjE8L3N0cmluZz4= 247 | 248 | 249 | Comment 250 | 10.9-BCM94352-5 GHz 251 | Disabled 252 | 253 | Find 254 | AVhU 255 | InfoPlistPatch 256 | 257 | Name 258 | AirPortBrcm4360 259 | Replace 260 | AVhY 261 | 262 | 263 | Comment 264 | 10.11+-BCM94352-Whitelest-0x4331-iMac14,3-skvo 265 | Disabled 266 | 267 | Find 268 | TWFjLUM2RUZBNjM5NjJGQzZFQTA= 269 | InfoPlistPatch 270 | 271 | Name 272 | AirPortBrcm4360 273 | Replace 274 | TWFjLTI3QURCQjdCNENFRThFNjE= 275 | 276 | 277 | Comment 278 | 10.11+-BCM94352-Whitelest-0x4353-MacBoolAir5,2-skvo 279 | Disabled 280 | 281 | Find 282 | TWFjLUM2RUZBNjM5NjJGQzZFQTA= 283 | InfoPlistPatch 284 | 285 | Name 286 | AirPortBrcm4360 287 | Replace 288 | TWFjLTI3QURCQjdCNENFRThFNjE= 289 | 290 | 291 | Comment 292 | 10.11-BCM94352-CC=#a-Ramalama 293 | Disabled 294 | 295 | Find 296 | QYP8/3QsSA== 297 | InfoPlistPatch 298 | 299 | Name 300 | AirPortBrcm4360 301 | Replace 302 | ZscGI2HrKw== 303 | 304 | 305 | Comment 306 | 10.11+-BCM94352-Airport-Extreme-skvo 307 | Disabled 308 | 309 | Find 310 | axAAAHUN 311 | InfoPlistPatch 312 | 313 | Name 314 | AirPortBrcm4360 315 | Replace 316 | axAAAJCQ 317 | 318 | 319 | Comment 320 | 10.10-BCM94352-5GHz-US-FCC-dv 321 | Disabled 322 | 323 | Find 324 | QYP8/3QsSA== 325 | InfoPlistPatch 326 | 327 | Name 328 | AirPortBrcm4360 329 | Replace 330 | ZscGVVPrKw== 331 | 332 | 333 | Comment 334 | 10.12-BCM94352-fvco-darkvoid 335 | Disabled 336 | 337 | Find 338 | gflSqgAAdSk= 339 | InfoPlistPatch 340 | 341 | Name 342 | AirPortBrcm4360 343 | Replace 344 | gflSqgAAZpA= 345 | 346 | 347 | Comment 348 | Zeroing 10ec0885 codec (patched by AppleHDA Patcher.app) 349 | Disabled 350 | 351 | Find 352 | hQjsEA== 353 | InfoPlistPatch 354 | 355 | Name 356 | AppleHDA 357 | Replace 358 | AAAAAA== 359 | 360 | 361 | Comment 362 | Patching 11d41984 with 10ec0269 codec (patched by AppleHDA Patcher.app) 363 | Disabled 364 | 365 | Find 366 | hBnUEQ== 367 | InfoPlistPatch 368 | 369 | Name 370 | AppleHDA 371 | Replace 372 | aQLsEA== 373 | 374 | 375 | Comment 376 | change F%uT%04x to F%uTxxxx for AppleBacklightInjector.kext (credit RehabMan) 377 | Disabled 378 | 379 | Find 380 | RiV1VCUwNHgA 381 | InfoPlistPatch 382 | 383 | Name 384 | com.apple.driver.AppleBacklight 385 | Replace 386 | RiV1VHh4eHgA 387 | 388 | 389 | Comment 390 | Boot graphics glitch 391 | Disabled 392 | 393 | Find 394 | AQAAdRc= 395 | InfoPlistPatch 396 | 397 | Name 398 | IOGraphicsFamily 399 | Replace 400 | AQAA6xc= 401 | 402 | 403 | Comment 404 | change F%uT%04x to F%uTxxxx in AppleBacklightInjector.kext (credit RehabMan) 405 | Disabled 406 | 407 | Find 408 | RiV1VCUwNHgA 409 | InfoPlistPatch 410 | 411 | Name 412 | com.apple.driver.AppleBacklight 413 | Replace 414 | RiV1VHh4eHgA 415 | 416 | 417 | 418 | RtVariables 419 | 420 | BooterConfig 421 | 0x28 422 | CsrActiveConfig 423 | 0x0 424 | MLB 425 | 426 | ROM 427 | UseMacAddr0 428 | 429 | SMBIOS 430 | 431 | BiosReleaseDate 432 | 06/26/2017 433 | BiosVendor 434 | Apple Inc. 435 | BiosVersion 436 | MBP91.88Z.00D7.B00.1708080744 437 | Board-ID 438 | Mac-6F01561E16C75D06 439 | BoardManufacturer 440 | Apple Inc. 441 | BoardSerialNumber 442 | 443 | BoardType 444 | 10 445 | BoardVersion 446 | g 447 | ChassisAssetTag 448 | MacBook-Aluminum 449 | ChassisManufacturer 450 | Apple Inc. 451 | ChassisType 452 | 0x09 453 | Family 454 | MacBook Pro 455 | FirmwareFeatures 456 | 0xC00DE137 457 | FirmwareFeaturesMask 458 | 0xFF1FFF3F 459 | LocationInChassis 460 | Part Component 461 | Manufacturer 462 | Apple Inc. 463 | Mobile 464 | 465 | PlatformFeature 466 | 0xFFFF 467 | ProductName 468 | MacBookPro9,2 469 | SerialNumber 470 | 471 | SmUUID 472 | 473 | Version 474 | 1.0 475 | 476 | SystemParameters 477 | 478 | InjectKexts 479 | Yes 480 | InjectSystemID 481 | 482 | 483 | 484 | 485 | -------------------------------------------------------------------------------- /doc/HowToFixDsdt.txt: -------------------------------------------------------------------------------- 1 | 2 | ========================================================================================================================== 3 | 4 | How to Fix DSDT using Clover (since rev. 479) 5 | ---------------------------------------------------------------- 6 | 7 | 8 | New setting in /EFI/config.plist: 9 | 10 | ACPI: 11 | FixDsdtMask 12 | 0xFFFF 13 | 14 | Suggest to remove /EFI/ACPI/patched/dsdt.aml if get kernel panic. 15 | All mask values are as below. Some patches need Method DTGP (0x0001) to work fine. 16 | 17 | Definition of 0x00FF: 18 | 0000 0000 0000 0001 = 0x0001 = FIX_DTGP 19 | 0000 0000 0000 0010 = 0x0002 = FIX_WARNING 20 | 0000 0000 0000 0100 = 0x0004 = FIX_SHUTDOWN 21 | 0000 0000 0000 1000 = 0x0008 = FIX_MCHC 22 | 0000 0000 0001 0000 = 0x0010 = FIX_HPET 23 | 0000 0000 0010 0000 = 0x0020 = FIX_LPC 24 | 0000 0000 0100 0000 = 0x0040 = FIX_IPIC 25 | 0000 0000 1000 0000 = 0x0080 = FIX_SBUS 26 | 27 | Definition of 0xFF00: 28 | 0000 0001 0000 0000 = 0x0100 = FIX_DISPLAY 29 | 0000 0010 0000 0000 = 0x0200 = FIX_IDE 30 | 0000 0100 0000 0000 = 0x0400 = FIX_SATA 31 | 0000 1000 0000 0000 = 0x0800 = FIX_FIREWIRE 32 | 0001 0000 0000 0000 = 0x1000 = FIX_USB 33 | 0010 0000 0000 0000 = 0x2000 = FIX_LAN 34 | 0100 0000 0000 0000 = 0x4000 = FIX_WIFI 35 | 1000 0000 0000 0000 = 0x8000 = FIX_HDA 36 | 37 | 38 | How to use dsdt fix: 39 | -------------------- 40 | 41 | 0000 0000 1111 1111 = 0x00FF = Fix all of bit(0) ~ bit(7). 42 | 1111 1111 0000 0000 = 0xFF00 = Fix all of bit(8) ~ bit(15). Need to be 0xFF01 with method DTGP first. 43 | 44 | You can fix dsdt for single function. Need method DTGP to work without dsdt.aml. 45 | 46 | 0000 0000 0000 1001 = 0x0009 = DTGP + MCHC 47 | 0000 0000 0010 0001 = 0x0021 = DTGP + LPC 48 | 0000 0000 1000 0001 = 0x0081 = DTGP + SBUS 49 | 0000 0001 0000 0001 = 0x0101 = DTGP + DISPLAY 50 | 0000 0010 0000 0001 = 0x0201 = DTGP + IDE 51 | 0000 0100 0000 0001 = 0x0401 = DTGP + SATA 52 | 0000 1000 0000 0001 = 0x0801 = DTGP + FIREWIRE 53 | 0001 0000 0000 0001 = 0x1001 = DTGP + USB 54 | 0010 0000 0000 0001 = 0x2001 = DTGP + LAN 55 | 0100 0000 0000 0001 = 0x4001 = DTGP + WIFI 56 | 1000 0000 0000 0001 = 0x8001 = DTGP + HDA 57 | 58 | Or fix dsdt for multi functions. Need method DTGP to work without dsdt.aml. 59 | 60 | 0000 0101 0000 0001 = 0x0501 = DTGP + DISPLAY + SATA 61 | 0011 0001 0000 0001 = 0x3101 = DTGP + DISPLAY + USB + LAN 62 | 1011 0101 0000 0001 = 0xB501 = DTGP + DISPLAY + SATA + USB + LAN + HDA 63 | 64 | ========================================================================================================================== 65 | -------------------------------------------------------------------------------- /doc/HowToInstallOSX.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | ========================================================================================================================== 4 | 5 | How to install InstallESD.dmg to GPT with 10.7.x and 10.8.x. (since rev. 480) 6 | ---------------------------------------------------------------- 7 | 8 | 9 | First, you need to Restore InstallESD.dmg to disk by using Disk Utility. 10 | 11 | Then, follow the stage 1 and stage 2 to install 10.7.x or 10.8.x to GPT, and auto-create the Recovery HD used for iCloud. 12 | 13 | 14 | Stage 1 15 | --------- 16 | 17 | 1.Remove kernelcache in InstallESD.dmg/Library/Preferences/SystemConfiguration/com.apple.Boot.plist. 18 | Kernel Cache remove this line. 19 | xxxxxxxxxxxxx remove this line. 20 | 21 | 2.Copy BaseSystem.dmg/System/Library/Extensions to partition of InstallESD.dmg and add other kexts (FakeSMC.kext). 22 | 23 | 3.Clover select to "Boot Mac OS X with extra kexts (skips cache)", and follow the installation with restart first time. 24 | 25 | 26 | Stage 2 27 | --------- 28 | 29 | 1.Remove kernelcache in target partition's /OS X Install Data/com.apple.Boot.plist. 30 | Kernel Cache remove this line. 31 | xxxxxxxxxxxxx remove this line. 32 | ( 10.7.x is /Mac OS X Install Data/com.apple.Boot.plist ) 33 | 34 | 2.Copy InstallESD.dmg/System/Library/CoreServices and /mach_kernel to target partition's / . 35 | 36 | 3.Copy BaseSystem.dmg/System/Library/Extensions to target partition's / and add other kexts (FakeSMC.kext). 37 | 38 | 4.Boot to "OS X Install" with "Boot Mac OS X with extra kexts (skips cache)" and finish the installation. 39 | (10.7.x is "Mac OS X Install") 40 | 41 | ========================================================================================================================== 42 | -------------------------------------------------------------------------------- /doc/bcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/bcfg.txt -------------------------------------------------------------------------------- /doc/boot1f32-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # boot1f32-install.sh 4 | # 5 | # Created by mackerintel on 2/2/09. 6 | # Copyright 2009 mackerintel. All rights reserved. 7 | 8 | if [[ x$1 == x ]]; then 9 | echo Usage: $0 disknumber; 10 | exit 0; 11 | fi 12 | 13 | if [[ `dd if=/dev/disk${1}s1 count=8 bs=1 skip=82 | uuencode -m -|head -n 2|tail -n 1` != "RkFUMzIgICA=" ]]; then 14 | echo "/dev/disk${1}s1" "isn't" a FAT32 partition; 15 | exit 1; 16 | fi 17 | 18 | if [ ! -f boot1f32 ]; then 19 | echo "boot1f32 not found"; 20 | exit 1; 21 | fi 22 | 23 | dd if=/dev/disk${1}s1 count=1 bs=512 of=/tmp/origbs 24 | cp boot1f32 /tmp/newbs 25 | dd if=/tmp/origbs of=/tmp/newbs skip=3 seek=3 bs=1 count=87 conv=notrunc 26 | dd of=/dev/disk${1}s1 count=1 bs=512 if=/tmp/newbs 27 | -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.18.41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.18.41.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.19.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.19.13.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.20.18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.20.18.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.20.36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.20.36.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.20.50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.20.50.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.21.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.21.30.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.22.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.22.04.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.22.24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.22.24.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.22.47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.22.47.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.23.15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.23.15.png -------------------------------------------------------------------------------- /doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.23.59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/doc/config.plist-FullSample/Screen Shot 2014-04-04 at 21.23.59.png -------------------------------------------------------------------------------- /drivers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/.DS_Store -------------------------------------------------------------------------------- /drivers/BIOS/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/BIOS/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /drivers/BIOS/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/BIOS/AudioDxe.efi -------------------------------------------------------------------------------- /drivers/BIOS/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/BIOS/FSInject.efi -------------------------------------------------------------------------------- /drivers/BIOS/SMCHelper.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/BIOS/SMCHelper.efi -------------------------------------------------------------------------------- /drivers/BIOS/XhciDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/BIOS/XhciDxe.efi -------------------------------------------------------------------------------- /drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /drivers/UEFI/DataHubDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/DataHubDxe.efi -------------------------------------------------------------------------------- /drivers/UEFI/EmuVariableUefi.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/EmuVariableUefi.efi -------------------------------------------------------------------------------- /drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /drivers/UEFI/OsxAptioFix3Drv.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/OsxAptioFix3Drv.efi -------------------------------------------------------------------------------- /drivers/UEFI/OsxFatBinaryDrv.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/OsxFatBinaryDrv.efi -------------------------------------------------------------------------------- /drivers/UEFI/PartitionDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/PartitionDxe.efi -------------------------------------------------------------------------------- /drivers/UEFI/SMCHelper.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/drivers/UEFI/SMCHelper.efi -------------------------------------------------------------------------------- /kexts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/.DS_Store -------------------------------------------------------------------------------- /kexts/10.11/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/10.12/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/10.13/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/10.14/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/10.15/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/Off/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/Other/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/.DS_Store -------------------------------------------------------------------------------- /kexts/Other/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kexts/Other/ACPIBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ACPIBatteryManager 11 | CFBundleGetInfoString 12 | 1.90.1, Copyright 2011 Apple Inc., RehabMan 2012 13 | CFBundleIdentifier 14 | org.rehabman.driver.AppleSmartBatteryManager 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ACPIBatteryManager 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.90.1 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.90.1 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 9F2000 35 | DTPlatformVersion 36 | GM 37 | DTSDKBuild 38 | 12D75 39 | DTSDKName 40 | macosx10.8 41 | DTXcode 42 | 0941 43 | DTXcodeBuild 44 | 9F2000 45 | IOKitPersonalities 46 | 47 | ACPI AC Adapter 48 | 49 | CFBundleIdentifier 50 | org.rehabman.driver.AppleSmartBatteryManager 51 | IOClass 52 | ACPIACAdapter 53 | IONameMatch 54 | ACPI0003 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOACPIPlatformDevice 59 | 60 | ACPI Battery Manager 61 | 62 | CFBundleIdentifier 63 | org.rehabman.driver.AppleSmartBatteryManager 64 | Configuration 65 | 66 | Correct16bitSignedCurrentRate 67 | 68 | CorrectCorruptCapacities 69 | 70 | CurrentDischargeRateMax 71 | 20000 72 | EstimateCycleCountDivisor 73 | 6 74 | FirstPollDelay 75 | 4000 76 | StartupDelay 77 | 0 78 | UseDesignVoltageForCurrentCapacity 79 | 80 | UseDesignVoltageForDesignCapacity 81 | 82 | UseDesignVoltageForMaxCapacity 83 | 84 | UseExtendedBatteryInformationMethod 85 | 86 | UseExtraBatteryInformationMethod 87 | 88 | 89 | IOClass 90 | AppleSmartBatteryManager 91 | IONameMatch 92 | PNP0C0A 93 | IOProbeScore 94 | 1000 95 | IOProviderClass 96 | IOACPIPlatformDevice 97 | 98 | 99 | NSHumanReadableCopyright 100 | Copyright © 2011 Apple Inc. All rights reserved, RehabMan 2012 101 | OSBundleLibraries 102 | 103 | com.apple.iokit.IOACPIFamily 104 | 1.0d1 105 | com.apple.kpi.iokit 106 | 9.0 107 | com.apple.kpi.libkern 108 | 9.0 109 | 110 | OSBundleRequired 111 | Root 112 | Source Code 113 | https://github.com/RehabMan/OS-X-ACPI-Battery-Driver 114 | 115 | 116 | -------------------------------------------------------------------------------- /kexts/Other/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager -------------------------------------------------------------------------------- /kexts/Other/FakeSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | FakeSMC 11 | CFBundleIdentifier 12 | org.netkas.driver.FakeSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakeSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 6.26-357-gceb835ea.1800 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1800 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | FakeSMC 46 | 47 | CFBundleIdentifier 48 | org.netkas.driver.FakeSMC 49 | Configuration 50 | 51 | Clover 52 | 53 | BEMB 54 | 55 | BEMB 56 | flag 57 | 58 | EPCI 59 | 60 | EPCI 61 | ui32 62 | 63 | RBr 64 | 65 | RBr 66 | ch8* 67 | 68 | REV 69 | 70 | REV 71 | {rev 72 | 73 | RPlt 74 | 75 | RPlt 76 | ch8* 77 | 78 | 79 | ExceptionKeys 80 | 81 | CLKH 82 | 1 83 | CLKT 84 | 1 85 | MSDW 86 | 1 87 | NATJ 88 | 1 89 | NATi 90 | 1 91 | NTOK 92 | 1 93 | WKTP 94 | 0 95 | 96 | Keys 97 | 98 | $Adr 99 | 100 | ui32 101 | 102 | AAADAA== 103 | 104 | 105 | $Num 106 | 107 | ui8 108 | 109 | AQ== 110 | 111 | 112 | ACID 113 | 114 | ch8* 115 | 116 | hfwETdgSevQ= 117 | 118 | 119 | ALI0 120 | 121 | {ali 122 | 123 | BwECAA== 124 | 125 | 126 | ALRV 127 | 128 | ui16 129 | 130 | AAE= 131 | 132 | 133 | ALV0 134 | 135 | {alv 136 | 137 | ARAGdQEgALYO4A== 138 | 139 | 140 | FNum 141 | 142 | ui8 143 | 144 | AA== 145 | 146 | 147 | LsNM 148 | 149 | ui8 150 | 151 | AQ== 152 | 153 | 154 | LsbV 155 | 156 | {rev 157 | 158 | AQQKAAY= 159 | 160 | 161 | MSLD 162 | 163 | ui8 164 | 165 | AA== 166 | 167 | 168 | MSSD 169 | 170 | si8 171 | 172 | BQ== 173 | 174 | 175 | MSSP 176 | 177 | si8 178 | 179 | BQ== 180 | 181 | 182 | NATJ 183 | 184 | ui8 185 | 186 | AA== 187 | 188 | 189 | OSK0 190 | 191 | ch8* 192 | 193 | b3VyaGFyZHdvcmtieXRoZXNld29y 194 | ZHNndWFyZGVkcGw= 195 | 196 | 197 | OSK1 198 | 199 | ch8* 200 | 201 | ZWFzZWRvbnRzdGVhbChjKUFwcGxl 202 | Q29tcHV0ZXJJbmM= 203 | 204 | 205 | REV 206 | 207 | {rev 208 | 209 | ATAPAAAD 210 | 211 | 212 | RMde 213 | 214 | char 215 | 216 | QQ== 217 | 218 | 219 | RVBF 220 | 221 | {rev 222 | 223 | ATAPAAAD 224 | 225 | 226 | RVUF 227 | 228 | {rev 229 | 230 | ATAPAAAD 231 | 232 | 233 | 234 | Types 235 | 236 | BEMB 237 | flag 238 | CLKC 239 | {clc 240 | CLKH 241 | {clh 242 | CLKT 243 | ui32 244 | CLWK 245 | ui32 246 | EPCI 247 | flag 248 | LSSS 249 | {lso 250 | MSDS 251 | ui8 252 | MSDW 253 | flag 254 | MSPS 255 | {msp 256 | RPlt 257 | ch8* 258 | 259 | debug 260 | 261 | smc-compatible 262 | smc-napa 263 | trace 264 | 265 | 266 | IOClass 267 | FakeSMC 268 | IOMatchCategory 269 | FakeSMC 270 | IOProviderClass 271 | AppleACPIPlatformExpert 272 | IOResourceMatch 273 | FakeSMCKeyStore 274 | RM,Build 275 | Release-rehabman 276 | RM,Version 277 | FakeSMC 1800 278 | 279 | FakeSMCKeyStore 280 | 281 | CFBundleIdentifier 282 | org.netkas.driver.FakeSMC 283 | IOClass 284 | FakeSMCKeyStore 285 | IOMatchCategory 286 | FakeSMCKeyStore 287 | IOProviderClass 288 | IOResources 289 | IOResourceMatch 290 | IOKit 291 | IOUserClientClass 292 | FakeSMCKeyStoreUserClient 293 | 294 | 295 | NSHumanReadableCopyright 296 | Copyright © 2017 netkas. All rights reserved. 297 | OSBundleCompatibleVersion 298 | 1429 299 | OSBundleLibraries 300 | 301 | com.apple.iokit.IOACPIFamily 302 | 1.0.0d1 303 | com.apple.kpi.bsd 304 | 10.6 305 | com.apple.kpi.iokit 306 | 10.6 307 | com.apple.kpi.libkern 308 | 10.6 309 | com.apple.kpi.mach 310 | 10.6 311 | com.apple.kpi.unsupported 312 | 10.6 313 | 314 | OSBundleRequired 315 | Root 316 | Source Code 317 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 318 | 319 | 320 | -------------------------------------------------------------------------------- /kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_ACPISensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ACPISensors 11 | CFBundleIdentifier 12 | org.hwsensors.driver.ACPISensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 6.26-357-gceb835ea.1800 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1800 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 8E3004b 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 12D75 35 | DTSDKName 36 | macosx10.8 37 | DTXcode 38 | 0833 39 | DTXcodeBuild 40 | 8E3004b 41 | IOKitPersonalities 42 | 43 | ACPI Customizable Monitoring Plugin 44 | 45 | IOClass 46 | ACPISensors 47 | IOMatchCategory 48 | FakeSMCPlugin 49 | IONameMatch 50 | 51 | monitor 52 | MONITOR 53 | MON0000 54 | FAN0000 55 | MON00000 56 | FAN00000 57 | acpi-monitor 58 | 59 | IOProbeScore 60 | 1000 61 | IOProviderClass 62 | IOACPIPlatformDevice 63 | IOResourceMatch 64 | FakeSMCKeyStore 65 | Platform Profile 66 | 67 | Default 68 | 69 | DisableDevice 70 | 71 | Tachometers 72 | 73 | CPUFan 74 | FAN1 75 | ExhaustFan 76 | FAN4 77 | FAN5 78 | FAN5 79 | Fan 10 80 | FANA 81 | Fan 6 82 | FAN6 83 | Fan 7 84 | FAN7 85 | Fan 8 86 | FAN8 87 | Fan 9 88 | FAN9 89 | IntakeFan 90 | FAN3 91 | PowerFan 92 | FAN2 93 | System Fan 94 | FAN0 95 | 96 | Temperatures 97 | 98 | Ambient 99 | TAMB 100 | CPU Heatsink 101 | TCPU 102 | CPU Proximity 103 | TCPP 104 | Mainboard 105 | TSYS 106 | UseKelvins 107 | 108 | 109 | Voltages 110 | 111 | CPU Core 112 | VCPU 113 | Memory 114 | VMEM 115 | 116 | 117 | 118 | 119 | ACPI Debugging Plugin 120 | 121 | IOClass 122 | ACPIProbe 123 | IOMatchCategory 124 | FakeSMCPlugin 125 | IONameMatch 126 | 127 | PRB0000 128 | acpi-probe 129 | 130 | IOProbeScore 131 | 1000 132 | IOProviderClass 133 | IOACPIPlatformDevice 134 | IOResourceMatch 135 | FakeSMCKeyStore 136 | IOUserClientClass 137 | ACPIProbeUserClient 138 | Platform Profile 139 | 140 | Default 141 | 142 | DisableDevice 143 | 144 | MethodsToPoll 145 | 146 | PollingInterval 147 | 2000 148 | PollingTimeout 149 | 5000 150 | VerboseLog 151 | 152 | 153 | HP 154 | 155 | Default 156 | 157 | DisableDevice 158 | 159 | 160 | 161 | 162 | 163 | PTID Device Monitoring Plugin 164 | 165 | IOClass 166 | PTIDSensors 167 | IOMatchCategory 168 | FakeSMCPlugin 169 | IONameMatch 170 | 171 | PTID 172 | 173 | IOProbeScore 174 | 1000 175 | IOProviderClass 176 | IOACPIPlatformDevice 177 | IOResourceMatch 178 | FakeSMCKeyStore 179 | Platform Profile 180 | 181 | Default 182 | 183 | DisableDevice 184 | 185 | 186 | HP 187 | 188 | Default 189 | 190 | DisableDevice 191 | 192 | 193 | 194 | 195 | 196 | Thermal Zone Monitoring Plugin 197 | 198 | IOClass 199 | ACPISensors 200 | IOMatchCategory 201 | FakeSMCPlugin 202 | IOProbeScore 203 | 1000 204 | IOPropertyMatch 205 | 206 | device_type 207 | thermal-zone 208 | 209 | IOProviderClass 210 | IOACPIPlatformDevice 211 | IOResourceMatch 212 | FakeSMCKeyStore 213 | Platform Profile 214 | 215 | Default 216 | 217 | DisableDevice 218 | 219 | Temperatures 220 | 221 | Thermal Zone 222 | _TMP 223 | UseKelvins 224 | 225 | 226 | 227 | HP 228 | 229 | Default 230 | 231 | DisableDevice 232 | 233 | 234 | 235 | 236 | 237 | 238 | NSHumanReadableCopyright 239 | Copyright © 2017 slice, kozlek. All rights reserved. 240 | OSBundleLibraries 241 | 242 | com.apple.iokit.IOACPIFamily 243 | 1.0.0b1 244 | com.apple.kpi.iokit 245 | 10.6 246 | com.apple.kpi.libkern 247 | 10.6 248 | com.apple.kpi.mach 249 | 10.6 250 | com.apple.kpi.unsupported 251 | 10.6 252 | org.netkas.driver.FakeSMC 253 | 1429 254 | 255 | Source Code 256 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 257 | 258 | 259 | -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_ACPISensors.kext/Contents/MacOS/ACPISensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/FakeSMC_ACPISensors.kext/Contents/MacOS/ACPISensors -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_CPUSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | CPUSensors 11 | CFBundleIdentifier 12 | org.hwsensors.driver.CPUSensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 6.26-357-gceb835ea.1800 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1800 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 8E3004b 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 12D75 35 | DTSDKName 36 | macosx10.8 37 | DTXcode 38 | 0833 39 | DTXcodeBuild 40 | 8E3004b 41 | IOKitPersonalities 42 | 43 | Intel Thermal Monitor 44 | 45 | CFBundleIdentifier 46 | org.hwsensors.driver.CPUSensors 47 | IOClass 48 | CPUSensors 49 | IOMatchCategory 50 | FakeSMCPlugin 51 | IONameMatch 52 | processor 53 | IOPropertyMatch 54 | 55 | processor-index 56 | 0 57 | 58 | IOProviderClass 59 | IOACPIPlatformDevice 60 | IOResourceMatch 61 | ACPI 62 | Platform Profile 63 | 64 | Default 65 | 66 | PlatformString 67 | 68 | Tjmax 69 | 0 70 | 71 | 72 | 73 | 74 | NSHumanReadableCopyright 75 | Copyright © 2017 Natan Zalkin <natan.zalkin@me.com>. All rights reserved. 76 | OSBundleLibraries 77 | 78 | com.apple.kpi.iokit 79 | 10.6 80 | com.apple.kpi.libkern 81 | 10.6 82 | com.apple.kpi.mach 83 | 10.6 84 | com.apple.kpi.unsupported 85 | 10.6 86 | org.netkas.driver.FakeSMC 87 | 1429 88 | 89 | Source Code 90 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 91 | 92 | 93 | -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_CPUSensors.kext/Contents/MacOS/CPUSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/FakeSMC_CPUSensors.kext/Contents/MacOS/CPUSensors -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_GPUSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | GPUSensors 11 | CFBundleIdentifier 12 | org.hwsensors.driver.GPUSensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | GPUSensors 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 6.26-357-gceb835ea.1800 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1800 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | AMD Radeon Monitoring Plugin 46 | 47 | CFBundleIdentifier 48 | org.hwsensors.driver.GPUSensors 49 | IOClass 50 | RadeonSensors 51 | IOMatchCategory 52 | FakeSMCPlugin 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x00001002&0x0000ffff 57 | IOProbeScore 58 | 40000 59 | IOProviderClass 60 | IOPCIDevice 61 | IOResourceMatch 62 | FakeSMCKeyStore 63 | 64 | Intel GMA X3100 Monitoring Plugin 65 | 66 | CFBundleIdentifier 67 | org.hwsensors.driver.GPUSensors 68 | IOClass 69 | GmaSensors 70 | IOMatchCategory 71 | FakeSMCPlugin 72 | IOPCIClassMatch 73 | 0x03000000&0xff0000000 74 | IOPCIMatch 75 | 0x2a028086&0xffffffff 0x2a128086&0xffffffff 76 | IOProbeScore 77 | 30000 78 | IOProviderClass 79 | IOPCIDevice 80 | IOResourceMatch 81 | FakeSMCKeyStore 82 | 83 | nVidia GeForce Monitoring Plugin 84 | 85 | CFBundleIdentifier 86 | org.hwsensors.driver.GPUSensors 87 | IOClass 88 | GeforceSensors 89 | IOMatchCategory 90 | FakeSMCPlugin 91 | IOPCIClassMatch 92 | 0x03000000&0xff000000 93 | IOPCIMatch 94 | 0x000010de&0x0000ffff 95 | IOProbeScore 96 | 50000 97 | IOProviderClass 98 | IOPCIDevice 99 | IOResourceMatch 100 | FakeSMCKeyStore 101 | 102 | 103 | NSHumanReadableCopyright 104 | Copyright © 2017 kozlek. All rights reserved. 105 | OSBundleLibraries 106 | 107 | com.apple.iokit.IOACPIFamily 108 | 1.0.0d1 109 | com.apple.iokit.IOPCIFamily 110 | 1.0.0b1 111 | com.apple.kpi.iokit 112 | 10.6 113 | com.apple.kpi.libkern 114 | 10.6 115 | com.apple.kpi.mach 116 | 10.6 117 | com.apple.kpi.unsupported 118 | 10.6 119 | org.netkas.driver.FakeSMC 120 | 1429 121 | 122 | Source Code 123 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 124 | 125 | 126 | -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_GPUSensors.kext/Contents/MacOS/GPUSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/FakeSMC_GPUSensors.kext/Contents/MacOS/GPUSensors -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_LPCSensors.kext/Contents/MacOS/LPCSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/FakeSMC_LPCSensors.kext/Contents/MacOS/LPCSensors -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_SMMSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | SMMSensors 11 | CFBundleIdentifier 12 | org.hwsensors.driver.SMMSensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 6.26-357-gceb835ea.1800 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1800 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 8E3004b 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 12D75 35 | DTSDKName 36 | macosx10.8 37 | DTXcode 38 | 0833 39 | DTXcodeBuild 40 | 8E3004b 41 | IOKitPersonalities 42 | 43 | SMM Monitoring Plugin 44 | 45 | IOClass 46 | SMMSensors 47 | IOMatchCategory 48 | FakeSMCPlugin 49 | IONameMatch 50 | bios 51 | IOProviderClass 52 | IOPlatformDevice 53 | Platform Profile 54 | 55 | Default 56 | 57 | DisableDevice 58 | 59 | FanMultiplier 60 | 1 61 | ForceLoad 62 | 63 | Tachometers 64 | 65 | System Fan 66 | 67 | Disabled 68 | 69 | Index 70 | 0 71 | 72 | 73 | Temperatures 74 | 75 | CPU Package 76 | 77 | Disabled 78 | 79 | Index 80 | 0 81 | 82 | 83 | 84 | Dell 85 | 86 | 02PG84 87 | 88 | Description 89 | Dell XPS 9360 (i7-8550U) 90 | Tachometers 91 | 92 | System Fan 93 | 94 | Disabled 95 | 96 | Index 97 | 0 98 | 99 | 100 | Temperatures 101 | 102 | Ambient 103 | 104 | Disabled 105 | 106 | Index 107 | 1 108 | 109 | CPU Package 110 | 111 | Disabled 112 | 113 | Index 114 | 0 115 | 116 | Mainboard 117 | 118 | Disabled 119 | 120 | Index 121 | 3 122 | 123 | Memory Module 124 | 125 | Disabled 126 | 127 | Index 128 | 4 129 | 130 | Thermal Zone 131 | 132 | Disabled 133 | 134 | Index 135 | 2 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | NSHumanReadableCopyright 144 | MIT License 145 | OSBundleLibraries 146 | 147 | com.apple.kpi.iokit 148 | 10.6 149 | com.apple.kpi.libkern 150 | 10.6 151 | com.apple.kpi.mach 152 | 10.6 153 | com.apple.kpi.unsupported 154 | 10.6 155 | org.netkas.driver.FakeSMC 156 | 1429 157 | 158 | Source Code 159 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 160 | 161 | 162 | -------------------------------------------------------------------------------- /kexts/Other/FakeSMC_SMMSensors.kext/Contents/MacOS/SMMSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/FakeSMC_SMMSensors.kext/Contents/MacOS/SMMSensors -------------------------------------------------------------------------------- /kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F96 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | IntelMausiEthernet 11 | CFBundleIdentifier 12 | com.insanelymac.IntelMausiEthernet 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IntelMausiEthernet 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.5.1.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.5.1.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E503a 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19E258 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1141 41 | DTXcodeBuild 42 | 11E503a 43 | IOKitPersonalities 44 | 45 | IntelMausi 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.IntelMausiEthernet 49 | Driver Parameters 50 | 51 | enableCSO6 52 | 53 | enableTSO4 54 | 55 | enableTSO6 56 | 57 | maxIntrRate10 58 | 3000 59 | maxIntrRate100 60 | 5000 61 | maxIntrRate1000 62 | 8000 63 | rxAbsTime10 64 | 0 65 | rxAbsTime100 66 | 0 67 | rxAbsTime1000 68 | 10 69 | rxDelayTime10 70 | 0 71 | rxDelayTime100 72 | 0 73 | rxDelayTime1000 74 | 0 75 | 76 | Driver_Version 77 | 2.5.1.0 78 | IOClass 79 | IntelMausi 80 | IOPCIMatch 81 | 0x10EA8086 0x10EB8086 0x10EF8086 0x10F08086 0x15028086 0x15038086 0x153A8086 0x153B8086 0x155A8086 0x15598086 0x15A08086 0x15A18086 0x15A28086 0x15A38086 0x156F8086 0x15708086 0x15B78086 0x15B88086 0x15D78086 0x15D88086 0x15E38086 0x15D68086 0x15BD8086 0x15BE8086 0x15BB8086 0x15BC8086 0x15DF8086 0x15E08086 0x15E18086 0x15E28086 0x15B98086 0x0D4E8086 0x0D4F8086 0x0D4C8086 0x0D4D8086 0x0D538086 0x0D558086 82 | IOProbeScore 83 | 1000 84 | IOProviderClass 85 | IOPCIDevice 86 | 87 | 88 | LSMinimumSystemVersion 89 | 10.14 90 | NSHumanReadableCopyright 91 | Copyright © 2014 Laura Müller. All rights reserved. 92 | OSBundleLibraries 93 | 94 | com.apple.iokit.IONetworkingFamily 95 | 1.5.0 96 | com.apple.iokit.IOPCIFamily 97 | 1.7 98 | com.apple.kpi.bsd 99 | 8.10.0 100 | com.apple.kpi.iokit 101 | 8.10.0 102 | com.apple.kpi.libkern 103 | 8.10.0 104 | com.apple.kpi.mach 105 | 8.10.0 106 | 107 | OSBundleRequired 108 | Network-Root 109 | 110 | 111 | -------------------------------------------------------------------------------- /kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /kexts/Other/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G6030 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoodooHDA 11 | CFBundleIdentifier 12 | org.voodoo.driver.VoodooHDA 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooHDA 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10B61 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 15E60 37 | DTSDKName 38 | macosx10.11 39 | DTXcode 40 | 1010 41 | DTXcodeBuild 42 | 10B61 43 | IOKitPersonalities 44 | 45 | VoodooHDA 46 | 47 | AllowMSI 48 | 49 | Boost 50 | 1 51 | CFBundleIdentifier 52 | org.voodoo.driver.VoodooHDA 53 | DisableInputMonitor 54 | 55 | IOClass 56 | VoodooHDADevice 57 | IOMatchCategory 58 | VoodooHDADevice 59 | IOPCIClassMatch 60 | 0x04020000&0xfffe0000 61 | IOProviderClass 62 | IOPCIDevice 63 | IOUserClientClass 64 | VoodooHDAUserClient 65 | InhibitCache 66 | 67 | MixerValues 68 | 69 | PCM 70 | 90 71 | Rec 72 | 90 73 | iGain 74 | 90 75 | iMix 76 | 90 77 | 78 | NodesToPatch 79 | 80 | 81 | Caps 82 | 0x373e 83 | Codec 84 | 4 85 | Comment 86 | Example of possible values 87 | Config 88 | 0x90a70120 89 | Conns 90 | 12,13,24 91 | Control 92 | 20 93 | DAC 94 | 2 95 | Enable 96 | 1 97 | Node 98 | 12 99 | Select 100 | 13 101 | SwitchCh 102 | 0 103 | Type 104 | 4 105 | 106 | 107 | Codec 108 | 2 109 | Comment 110 | To disable back sound on ALC codec set enable=0 111 | Enable 112 | 1 113 | Node 114 | 11 115 | 116 | 117 | Noise 118 | 0 119 | Vectorize 120 | 121 | VoodooHDAEnableHalfMicVolumeFix 122 | 123 | VoodooHDAEnableHalfVolumeFix 124 | 125 | VoodooHDAEnableMuteFix 126 | 127 | VoodooHDAEnableVolumeChangeFix 128 | 129 | VoodooHDAVerboseLevel 130 | 0 131 | 132 | 133 | OSBundleLibraries 134 | 135 | com.apple.iokit.IOAudioFamily 136 | 1.1fc9 137 | com.apple.iokit.IOPCIFamily 138 | 2.1 139 | com.apple.kpi.iokit 140 | 9.0.0 141 | com.apple.kpi.libkern 142 | 9.0.0 143 | com.apple.kpi.mach 144 | 9.0.0 145 | com.apple.kpi.unsupported 146 | 9.0.0 147 | 148 | 149 | 150 | -------------------------------------------------------------------------------- /kexts/Other/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /kexts/Other/VoodooHDA.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 1.9.2, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | ACPI PS/2 Nub 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Controller 49 | FindMouseDelay 50 | 100 51 | IOClass 52 | AppleACPIPS2Nub 53 | IONameMatch 54 | 55 | PNP0303 56 | PNP030B 57 | PNP0320 58 | 59 | IOProviderClass 60 | IOACPIPlatformDevice 61 | MouseNameMatch 62 | 63 | PNP0F03 64 | PNP0F0B 65 | PNP0F0E 66 | PNP0F13 67 | 68 | 69 | ApplePS2Controller 70 | 71 | CFBundleIdentifier 72 | org.rehabman.voodoo.driver.PS2Controller 73 | IOClass 74 | ApplePS2Controller 75 | IONameMatch 76 | ps2controller 77 | IOProviderClass 78 | IOPlatformDevice 79 | Platform Profile 80 | 81 | Default 82 | 83 | MouseWakeFirst 84 | 85 | WakeDelay 86 | 10 87 | 88 | HPQOEM 89 | 90 | 1411 91 | ProBook 92 | 1619 93 | ProBook 94 | 161C 95 | ProBook 96 | 164F 97 | ProBook 98 | 167C 99 | ProBook 100 | 167E 101 | ProBook 102 | 1680 103 | ProBook 104 | 179B 105 | ProBook 106 | 179C 107 | ProBook 108 | 17A9 109 | ProBook 110 | 17F0 111 | ProBook 112 | 17F3 113 | ProBook 114 | 17F6 115 | ProBook 116 | 1942 117 | ProBook 118 | 1949 119 | ProBook 120 | 198F 121 | ProBook 122 | ProBook 123 | 124 | WakeDelay 125 | 0 126 | 127 | ProBook-102 128 | ProBook 129 | ProBook-87 130 | ProBook 131 | 132 | 133 | RM,deliverNotifications 134 | 135 | 136 | 137 | OSBundleCompatibleVersion 138 | 1.9.2 139 | OSBundleLibraries 140 | 141 | com.apple.iokit.IOACPIFamily 142 | 1.0.0d1 143 | com.apple.kpi.bsd 144 | 8.0.0 145 | com.apple.kpi.iokit 146 | 8.0.0 147 | com.apple.kpi.libkern 148 | 8.0.0 149 | com.apple.kpi.mach 150 | 8.0.0 151 | com.apple.kpi.unsupported 152 | 8.0.0 153 | 154 | OSBundleRequired 155 | Console 156 | Source Code 157 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 158 | 159 | 160 | -------------------------------------------------------------------------------- /kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 1.9.2, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.9.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.9.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | ApplePS2Mouse 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Mouse 49 | HIDPointerAccelerationType 50 | HIDTrackpadAcceleration 51 | HIDScrollAccelerationType 52 | HIDTrackpadScrollAcceleration 53 | IOClass 54 | ApplePS2Mouse 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | ActLikeTrackpad 62 | 63 | ButtonCount 64 | 3 65 | Darwin 16+ 66 | 67 | ApplePreferenceCapability 68 | 69 | ApplePreferenceIdentifier 70 | com.apple.AppleMultitouchTrackpad 71 | MT Built-in 72 | 73 | MTHIDDevice 74 | 75 | SupportsGestureScrolling 76 | 77 | TrackpadEmbedded 78 | 79 | TrackpadFourFingerGestures 80 | 81 | TrackpadSecondaryClickCorners 82 | 83 | TrackpadThreeFingerDrag 84 | 85 | 86 | DefaultResolution 87 | 240 88 | DisableDevice 89 | 90 | DisableLEDUpdating 91 | 92 | FakeMiddleButton 93 | 94 | ForceDefaultResolution 95 | 96 | ForceSetResolution 97 | 98 | MiddleClickTime 99 | 100000000 100 | MouseCount 101 | 0 102 | MouseYInverter 103 | 1 104 | ProcessBluetoothMouseStopsTrackpad 105 | 106 | ProcessUSBMouseStopsTrackpad 107 | 108 | QuietTimeAfterTyping 109 | 500000000 110 | ResolutionMode 111 | 3 112 | ScrollResolution 113 | 5 114 | ScrollYInverter 115 | 1 116 | TrackpadScroll 117 | 118 | WakeDelay 119 | 1000 120 | 121 | HPQOEM 122 | 123 | 1411 124 | ProBook 125 | 1619 126 | ProBook 127 | 161C 128 | ProBook 129 | 164F 130 | ProBook 131 | 167C 132 | ProBook 133 | 167E 134 | ProBook 135 | 1680 136 | ProBook 137 | 179B 138 | ProBook 139 | 179C 140 | ProBook 141 | 17A9 142 | ProBook 143 | 17F0 144 | ProBook 145 | 17F3 146 | ProBook 147 | 17F6 148 | ProBook 149 | 1942 150 | ProBook 151 | 1949 152 | ProBook 153 | 198F 154 | ProBook 155 | ProBook 156 | 157 | ActLikeTrackpad 158 | 159 | DisableDevice 160 | 161 | 162 | ProBook-102 163 | ProBook 164 | ProBook-87 165 | ProBook 166 | 167 | 168 | ProductID 169 | 547 170 | RM,deliverNotifications 171 | 172 | USBMouseStopsTrackpad 173 | 0 174 | VendorID 175 | 1452 176 | 177 | 178 | OSBundleLibraries 179 | 180 | com.apple.iokit.IOHIDFamily 181 | 1.0.0b1 182 | com.apple.kpi.iokit 183 | 9.0.0 184 | com.apple.kpi.libkern 185 | 9.0.0 186 | com.apple.kpi.mach 187 | 9.0.0 188 | org.rehabman.voodoo.driver.PS2Controller 189 | 1.9.2 190 | 191 | OSBundleRequired 192 | Console 193 | Source Code 194 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 195 | 196 | 197 | -------------------------------------------------------------------------------- /kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /kexts/Other/aDummyHDA.kext/Contents/MacOS/AppleHDA: -------------------------------------------------------------------------------- 1 | /System/Library/Extensions/AppleHDA.kext/Contents/MacOS/AppleHDA -------------------------------------------------------------------------------- /kexts/Other/aDummyHDA.kext/Contents/Resources/Platforms.xml.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/aDummyHDA.kext/Contents/Resources/Platforms.xml.zlib -------------------------------------------------------------------------------- /kexts/Other/aDummyHDA.kext/Contents/Resources/layout3.xml.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/kexts/Other/aDummyHDA.kext/Contents/Resources/layout3.xml.zlib -------------------------------------------------------------------------------- /kexts/Other/realtekALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 13CA598 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleGetInfoString 10 | Realtek ALC 2.1, Copyright © 2015 toleda. All rights reserved. 11 | CFBundleIdentifier 12 | com.apple.driver.RealtekALC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Realtek ALC Configuation Driver 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2-toledaALC-110 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | IOKitPersonalities 26 | 27 | HDA Hardware Config Resource 28 | 29 | CFBundleIdentifier 30 | com.apple.driver.AppleHDAHardwareConfigDriver 31 | HDAConfigDefault 32 | 33 | 34 | CodecID 35 | 283904133 36 | ConfigData 37 | IUccECFHHUAhRx4RIUcfASFXHCAhVx0QIVceASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfccoCH3HQEh9x7LIfcfASEXHPAhFx0AIRceACEXH0A= 38 | FuncGroup 39 | 1 40 | LayoutID 41 | 1 42 | Comment 43 | toledaALC 44 | 45 | 46 | CodecID 47 | 283904135 48 | ConfigData 49 | IUccECFHHUAhRx4RIUcfkCFHDAIhVxwgIVcdECFXHgEhVx8BIWccMCFnHWAhZx4BIWcfASF3HPAhdx0AIXceACF3H0AhhxxAIYcdkCGHHqAhhx+QIZccYCGXHZAhlx6BIZcfAiGnHFAhpx0wIacegSGnHwEhtxxwIbcdQCG3HiEhtx8CIbcMAiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA== 50 | FuncGroup 51 | 1 52 | LayoutID 53 | 1 54 | Comment 55 | toledaALC 56 | 57 | 58 | CodecID 59 | 283904135 60 | ConfigData 61 | IUccECFHHUAhRx4RIUcfkCFHDAIhVxzwIVcdACFXHgAhVx9AIWcc8CFnHQAhZx4AIWcfQCF3HPAhdx0AIXceACF3H0AhhxxAIYcdYCGHHgEhhx8BIZccYCGXHZAhlx6gIZcfkCGnHFAhpx0QIaceASGnHwEhtxxwIbcdQCG3HiEhtx8CIbcMAiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA== 62 | FuncGroup 63 | 1 64 | LayoutID 65 | 2 66 | Comment 67 | toledaALC 68 | 69 | 70 | CodecID 71 | 283904135 72 | ConfigData 73 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 74 | FuncGroup 75 | 1 76 | LayoutID 77 | 3 78 | Comment 79 | toledaALC 80 | 81 | 82 | CodecID 83 | 283904136 84 | ConfigData 85 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 86 | FuncGroup 87 | 1 88 | LayoutID 89 | 1 90 | Comment 91 | toledaALC 92 | 93 | 94 | CodecID 95 | 283904136 96 | ConfigData 97 | IUccECFHHUAhRx4RIUcfkCFXHPAhVx0AIVceACFXH0AhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx1gIYceASGHHwEhlxxgIZcdkCGXHqAhlx+QIaccUCGnHRAhpx4BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 98 | FuncGroup 99 | 1 100 | LayoutID 101 | 2 102 | Comment 103 | toledaALC 104 | 105 | 106 | CodecID 107 | 283904136 108 | ConfigData 109 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 110 | FuncGroup 111 | 1 112 | LayoutID 113 | 3 114 | Comment 115 | toledaALC 116 | 117 | 118 | CodecID 119 | 283904137 120 | ConfigData 121 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 122 | FuncGroup 123 | 1 124 | LayoutID 125 | 1 126 | Comment 127 | toledaALC 128 | 129 | 130 | CodecID 131 | 283904137 132 | ConfigData 133 | IUccECFHHUAhRx4RIUcfkCFXHPAhVx0AIVceACFXH0AhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx1gIYceASGHHwEhlxxgIZcdkCGXHqAhlx+QIaccUCGnHRAhpx4BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 134 | FuncGroup 135 | 1 136 | LayoutID 137 | 2 138 | Comment 139 | toledaALC 140 | 141 | 142 | CodecID 143 | 283904137 144 | ConfigData 145 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 146 | FuncGroup 147 | 1 148 | LayoutID 149 | 3 150 | Comment 151 | toledaALC 152 | 153 | 154 | CodecID 155 | 283904146 156 | ConfigData 157 | IUccECFHHUAhRx4RIUcfkCFHDAIhVxwgIVcdECFXHgEhVx8BIWccMCFnHWAhZx4BIWcfASF3HPAhdx0AIXceACF3H0AhhxxAIYcdkCGHHqAhhx+QIZccYCGXHZAhlx6BIZcfAiGnHFAhpx0wIacegSGnHwEhtxxwIbcdQCG3HiEhtx8CIbcMAiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA== 158 | LayoutID 159 | 1 160 | FuncGroup 161 | 1 162 | Comment 163 | toledaALC 164 | 165 | 166 | CodecID 167 | 283904146 168 | ConfigData 169 | IUccECFHHUAhRx4RIUcfkCFHDAIhVxzwIVcdACFXHgAhVx9AIWcc8CFnHQAhZx4AIWcfQCF3HPAhdx0AIXceACF3H0AhhxxAIYcdYCGHHgEhhx8BIZccYCGXHZAhlx6gIZcfkCGnHFAhpx0QIaceASGnHwEhtxxwIbcdQCG3HiEhtx8CIbcMAiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA== 170 | FuncGroup 171 | 1 172 | LayoutID 173 | 2 174 | Comment 175 | toledaALC 176 | 177 | 178 | CodecID 179 | 283904146 180 | FuncGroup 181 | 1 182 | ConfigData 183 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 184 | LayoutID 185 | 3 186 | Comment 187 | toledaALC 188 | 189 | 190 | CodecID 191 | 283904153 192 | ConfigData 193 | IUccECFHHUAhRx4RIUcfkCFHDAIhVxwgIVcdECFXHgEhVx8BIWccMCFnHWAhZx4BIWcfASF3HPAhdx0AIXceACF3H0AhhxxAIYcdkCGHHqAhhx+QIZccYCGXHZAhlx6BIZcfAiGnHFAhpx0wIacegSGnHwEhtxxwIbcdQCG3HiEhtx8CIbcMAiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA== 194 | FuncGroup 195 | 1 196 | LayoutID 197 | 1 198 | Comment 199 | toledaALC 200 | 201 | 202 | CodecID 203 | 283904153 204 | ConfigData 205 | IUccECFHHUAhRx4RIUcfkCFHDAIhVxzwIVcdACFXHgAhVx9AIWcc8CFnHQAhZx4AIWcfQCF3HPAhdx0AIXceACF3H0AhhxxAIYcdYCGHHgEhhx8BIZccYCGXHZAhlx6gIZcfkCGnHFAhpx0QIaceASGnHwEhtxxwIbcdQCG3HiEhtx8CIbcMAiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA== 206 | FuncGroup 207 | 1 208 | LayoutID 209 | 2 210 | Comment 211 | toledaALC 212 | 213 | 214 | CodecID 215 | 283904153 216 | ConfigData 217 | IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVceASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5AhlxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6BIacfASG3HHAhtx1AIbceISG3HwIh5xyQIecdYSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEXHPAhFx0AIRceACEXH0A= 218 | FuncGroup 219 | 1 220 | LayoutID 221 | 3 222 | Comment 223 | toledaALC 224 | 225 | 226 | CodecID 227 | 283904256 228 | ConfigData 229 | AUccEAFHHUABRx4RAUcfkAFHDAIBVxwgAVcdEAFXHgEBVx8BAWccMAFnHWABZx4BAWcfAQF3HPABdx0AAXceAAF3H0ABhxxAAYcdkAGHHqABhx+QAZccYAGXHZABlx6BAZcfAgGnHFABpx0wAacegQGnHwEBtxxwAbcdQAG3HiEBtx8CAbcMAgHnHJAB5x1hAeceSwHnHwEB9xzwAfcdAAH3HgAB9x9AARcc8AEXHQABFx4AARcfQA== 230 | FuncGroup 231 | 1 232 | LayoutID 233 | 1 234 | Comment 235 | toledaALC 236 | 237 | 238 | CodecID 239 | 283904256 240 | ConfigData 241 | AUccEAFHHUABRx4RAUcfkAFHDAIBVxzwAVcdAAFXHgABVx9AAWcc8AFnHQABZx4AAWcfQAF3HPABdx0AAXceAAF3H0ABhxxAAYcdYAGHHgEBhx8BAZccYAGXHZABlx6gAZcfkAGnHFABpx0QAaceAQGnHwEBtxxwAbcdQAG3HiEBtx8CAbcMAgHnHJAB5x1hAeceSwHnHwEB9xzwAfcdAAH3HgAB9x9AARcc8AEXHQABFx4AARcfQA== 242 | FuncGroup 243 | 1 244 | LayoutID 245 | 2 246 | Comment 247 | toledaALC 248 | 249 | 250 | CodecID 251 | 283904256 252 | ConfigData 253 | AUccEAFHHUABRx4RAUcfkAFXHCABVx0QAVceAQFXHwEBZxzwAWcdAAFnHgABZx9AAXcc8AF3HQABdx4AAXcfQAGHHEABhx2QAYceoAGHH5ABlxxgAZcdkAGXHoEBlx8CAaccUAGnHTABpx6BAacfAQG3HHABtx1AAbceIQG3HwIB5xyQAecdYQHnHksB5x8BAfcc8AH3HQAB9x4AAfcfQAEXHPABFx0AARceAAEXH0A= 254 | FuncGroup 255 | 1 256 | LayoutID 257 | 3 258 | Comment 259 | toledaALC 260 | 261 | 262 | CodecID 263 | 283902569 264 | ConfigData 265 | IUcc8CFHHQAhRx4AIUcfQCFXHHAhVx1AIVceISFXHwIhZxzwIWcdACFnHgAhZx9AIXcc8CF3HQAhdx4AIXcfQCGHHPAhhx0AIYceACGHH0AhlxzwIZcdACGXHgAhlx9AIacc8CGnHQAhpx4AIacfQCG3HPAhtx0AIbceACG3H0Ah5xyQIecdYSHnHksh5x8B 266 | FuncGroup 267 | 1 268 | LayoutID 269 | 1 270 | Comment 271 | toledaALC 272 | 273 | 274 | CodecID 275 | 283902595 276 | ConfigData 277 | AScc8AEnHQABJx4AAScfQAFHHPABRx0AAUceAAFHH0ABdxzwAXcdAAF3HgABdx9AAYcc8AGHHQABhx4AAYcfQAGXHGABlx0wAZceiwGXHwEBpxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4AAbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecdAAHnHgAB5x9AAhcccAIXHUACFx4rAhcfAQGXDAICFwwC 278 | FuncGroup 279 | 1 280 | LayoutID 281 | 1 282 | Comment 283 | toledaALC 284 | 285 | 286 | IOClass 287 | AppleHDAHardwareConfigDriver 288 | IOMatchCategory 289 | AppleHDAHardwareConfigDriver 290 | IOProviderClass 291 | AppleHDAHardwareConfigDriverLoader 292 | 293 | 294 | OSBundleRequired 295 | Root 296 | 297 | 298 | -------------------------------------------------------------------------------- /misc/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /misc/preboot.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/misc/preboot.log -------------------------------------------------------------------------------- /themes/High Sierra/Selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/Selection_big.png -------------------------------------------------------------------------------- /themes/High Sierra/Selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/Selection_small.png -------------------------------------------------------------------------------- /themes/High Sierra/apple logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/apple logo.png -------------------------------------------------------------------------------- /themes/High Sierra/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/background.png -------------------------------------------------------------------------------- /themes/High Sierra/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/font.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/apple.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_about.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_clover.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_help.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_options.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_reset.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_secureboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_secureboot.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_secureboot_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_secureboot_config.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/func_shutdown.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_cap.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_clover.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_cougar.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_debian.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_debian.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_fedora.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_fedora.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_grub.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_grub.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_high.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_kubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_kubuntu.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_legacy.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_linux.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_lion.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_mac.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_mav.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_mint.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_mint.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_recovery.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_recovery.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_redhat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_redhat.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_snow.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_suse.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_suse.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_tiger.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_vista.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_win.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_win7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_win7.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/os_yos.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/placeholder.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/placeholder.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/pointer.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/pointer.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/tool_part.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/tool_part.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/tool_rescue.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/tool_rescue.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/tool_shell.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/tool_shell.png -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_clover.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_external.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_firewire.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_internal.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_linux.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_mac.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_optical.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_recovery.icns -------------------------------------------------------------------------------- /themes/High Sierra/icons/vol_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/icons/vol_win.icns -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/bar_end.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/bar_start.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/down_button.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /themes/High Sierra/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/High Sierra/scrollbar/up_button.png -------------------------------------------------------------------------------- /themes/High Sierra/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | 7 | Description 8 | High Sierra 9 | Theme 10 | 11 | Background 12 | 13 | Dark 14 | 15 | Path 16 | background.png 17 | Type 18 | Scale 19 | 20 | Badges 21 | 22 | Inline 23 | 24 | Show 25 | 26 | Swap 27 | 28 | 29 | Banner 30 | apple logo.png 31 | BootCampStyle 32 | 33 | Components 34 | 35 | Banner 36 | 37 | Functions 38 | 39 | Help 40 | 41 | Label 42 | 43 | MenuTitle 44 | 45 | MenuTitleImage 46 | 47 | Revision 48 | 49 | 50 | Font 51 | 52 | CharWidth 53 | 16 54 | Path 55 | font.png 56 | Proportional 57 | 58 | Type 59 | Load 60 | 61 | Selection 62 | 63 | Big 64 | Selection_big.png 65 | ChangeNonSelectedGrey 66 | 67 | Color 68 | 0x00000065 69 | OnTop 70 | 71 | Small 72 | Selection_small.png 73 | 74 | 75 | Year 76 | 2017 77 | 78 | 79 | -------------------------------------------------------------------------------- /themes/bootcamp/Select_trans_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/Select_trans_big.png -------------------------------------------------------------------------------- /themes/bootcamp/Select_trans_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/Select_trans_small.png -------------------------------------------------------------------------------- /themes/bootcamp/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/background.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/boot_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/boot_linux.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/boot_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/boot_win.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/func_about.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/func_options.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/func_reset.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/func_shutdown.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_cougar.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_legacy.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_lion.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_mac.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_snow.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_vista.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_win.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_win7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_win7.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/os_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/os_win8.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/osx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/osx.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/pointer-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/pointer-black.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/pointer.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/tool_shell.png -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_clover.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_external.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_firewire.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_internal.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_netboot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_netboot.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_optical.icns -------------------------------------------------------------------------------- /themes/bootcamp/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/icons/vol_recovery.icns -------------------------------------------------------------------------------- /themes/bootcamp/logo-trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/logo-trans.png -------------------------------------------------------------------------------- /themes/bootcamp/mpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/mpr.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/bar_end.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/bar_start.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/down_button.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /themes/bootcamp/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/bootcamp/scrollbar/up_button.png -------------------------------------------------------------------------------- /themes/bootcamp/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GUI 6 | 7 | ScreenResolution 8 | 1920x1080 9 | 10 | Author 11 | AirDisk 12 | Description 13 | BootCamp Yosemite v0.8 14 | Theme 15 | 16 | Background 17 | 18 | Path 19 | background.png 20 | Type 21 | Crop 22 | 23 | Badges 24 | 25 | Inline 26 | 27 | Show 28 | 29 | Swap 30 | 31 | 32 | Banner 33 | logo-trans.png 34 | Font 35 | 36 | CharWidth 37 | 10 38 | Path 39 | mpr.png 40 | Type 41 | Load 42 | 43 | Selection 44 | 45 | Big 46 | Select_trans_big.png 47 | Color 48 | 0xF3F3F380 49 | Small 50 | Select_trans_small.png 51 | 52 | 53 | Year 54 | 2014 55 | 56 | 57 | -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_000.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_001.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_002.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_003.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_004.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_005.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_006.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_007.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_008.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_009.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_010.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_011.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_012.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_013.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_014.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_015.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_016.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_017.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_018.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_019.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_020.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_021.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_022.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_023.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_024.png -------------------------------------------------------------------------------- /themes/christmas/Anim_1_Logo/Anim_1_Logo_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Anim_1_Logo/Anim_1_Logo_025.png -------------------------------------------------------------------------------- /themes/christmas/Selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Selection_big.png -------------------------------------------------------------------------------- /themes/christmas/Selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/Selection_small.png -------------------------------------------------------------------------------- /themes/christmas/WoR_NovaMono_9W_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/WoR_NovaMono_9W_A.png -------------------------------------------------------------------------------- /themes/christmas/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/background.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_about.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_clover.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_options.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_reset.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_secureboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_secureboot.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_secureboot_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_secureboot_config.png -------------------------------------------------------------------------------- /themes/christmas/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/func_shutdown.png -------------------------------------------------------------------------------- /themes/christmas/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_cap.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_clover.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_cougar.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_hsierra.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_linux.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_lion.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_mav.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_sierra.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_snow.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_vista.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_win.icns -------------------------------------------------------------------------------- /themes/christmas/icons/os_yos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/os_yos.icns -------------------------------------------------------------------------------- /themes/christmas/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/pointer.png -------------------------------------------------------------------------------- /themes/christmas/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/tool_shell.png -------------------------------------------------------------------------------- /themes/christmas/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_clover.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_external.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_internal.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_optical.icns -------------------------------------------------------------------------------- /themes/christmas/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/icons/vol_recovery.icns -------------------------------------------------------------------------------- /themes/christmas/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/logo.png -------------------------------------------------------------------------------- /themes/christmas/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/christmas/screenshot.png -------------------------------------------------------------------------------- /themes/christmas/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | blackosx 7 | Description 8 | A fun, simply animated, theme for Christmas. 9 | Theme 10 | 11 | Anime 12 | 13 | 14 | FrameTime 15 | 60 16 | Frames 17 | 26 18 | ID 19 | 1 20 | Once 21 | 22 | Path 23 | Anim_1_Logo 24 | 25 | 26 | Background 27 | 28 | Light 29 | 30 | Path 31 | background.png 32 | Sharp 33 | 0x00 34 | Type 35 | Scale 36 | 37 | Badges 38 | 39 | Inline 40 | 41 | OffsetX 42 | 0 43 | OffsetY 44 | 0 45 | Scale 46 | 16 47 | Show 48 | 49 | Swap 50 | 51 | 52 | Banner 53 | logo.png 54 | Layout 55 | 56 | BannerOffset 57 | 80 58 | 59 | Font 60 | 61 | CharWidth 62 | 9 63 | Path 64 | WoR_NovaMono_9W_A.png 65 | Type 66 | Load 67 | 68 | Selection 69 | 70 | Big 71 | Selection_big.png 72 | Color 73 | 0x930000FF 74 | OnTop 75 | 76 | Small 77 | Selection_small.png 78 | 79 | 80 | Year 81 | 2013 82 | 83 | 84 | -------------------------------------------------------------------------------- /themes/embedded/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/embedded/screenshot.png -------------------------------------------------------------------------------- /themes/embedded/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | blackosx, clovy 7 | Description 8 | Embedded Theme 9 | Year 10 | 2018 11 | 12 | 13 | -------------------------------------------------------------------------------- /themes/logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/logo_main.png -------------------------------------------------------------------------------- /themes/newyear/arrow-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/arrow-144.png -------------------------------------------------------------------------------- /themes/newyear/arrow-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/arrow-64.png -------------------------------------------------------------------------------- /themes/newyear/dark-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/dark-wide.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_000.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_001.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_002.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_003.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_004.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_005.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_006.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_007.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_008.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_009.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_010.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_011.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_012.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_013.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_014.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_015.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_016.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_017.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_018.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_019.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_020.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_021.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_022.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_023.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_024.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_025.png -------------------------------------------------------------------------------- /themes/newyear/elka_1/elka_1_026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/elka_1/elka_1_026.png -------------------------------------------------------------------------------- /themes/newyear/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/happy.png -------------------------------------------------------------------------------- /themes/newyear/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/func_about.png -------------------------------------------------------------------------------- /themes/newyear/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/func_clover.png -------------------------------------------------------------------------------- /themes/newyear/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/func_help.png -------------------------------------------------------------------------------- /themes/newyear/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/func_options.png -------------------------------------------------------------------------------- /themes/newyear/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/func_reset.png -------------------------------------------------------------------------------- /themes/newyear/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/func_shutdown.png -------------------------------------------------------------------------------- /themes/newyear/icons/os_cap.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_cap.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_clover.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_cougar.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_freebsd.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_freedos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_freedos.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_hsierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_hsierra.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_legacy.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_leo.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_linux.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_lion.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_mac.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_mav.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_mav.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_sierra.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_snow.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_tiger.icns -------------------------------------------------------------------------------- /themes/newyear/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/os_vista.icns -------------------------------------------------------------------------------- /themes/newyear/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/pointer.png -------------------------------------------------------------------------------- /themes/newyear/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/tool_shell.png -------------------------------------------------------------------------------- /themes/newyear/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_clover.icns -------------------------------------------------------------------------------- /themes/newyear/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_external.icns -------------------------------------------------------------------------------- /themes/newyear/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_firewire.icns -------------------------------------------------------------------------------- /themes/newyear/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_internal.icns -------------------------------------------------------------------------------- /themes/newyear/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /themes/newyear/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_optical.icns -------------------------------------------------------------------------------- /themes/newyear/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/icons/vol_recovery.icns -------------------------------------------------------------------------------- /themes/newyear/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/screenshot.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/bar_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/bar_end.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/bar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/bar_fill.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/bar_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/bar_start.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/down_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/down_button.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/scroll_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/scroll_end.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/scroll_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/scroll_fill.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/scroll_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/scroll_start.png -------------------------------------------------------------------------------- /themes/newyear/scrollbar/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/scrollbar/up_button.png -------------------------------------------------------------------------------- /themes/newyear/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/newyear/snow.png -------------------------------------------------------------------------------- /themes/newyear/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | Slice 7 | Description 8 | Happy New Year 9 | Theme 10 | 11 | Anime 12 | 13 | 14 | FrameTime 15 | 200 16 | Frames 17 | 27 18 | ID 19 | 1 20 | Path 21 | elka_1 22 | 23 | 24 | Background 25 | 26 | Path 27 | snow.png 28 | Type 29 | Scale 30 | 31 | Badges 32 | 33 | Inline 34 | 35 | Show 36 | 37 | Swap 38 | 39 | 40 | Banner 41 | happy.png 42 | Font 43 | 44 | CharWidth 45 | 10 46 | Path 47 | dark-wide.png 48 | Type 49 | Load 50 | 51 | Layout 52 | 53 | BannerOffset 54 | 80 55 | 56 | Selection 57 | 58 | Big 59 | arrow-144.png 60 | Color 61 | 0x1D7BEE80 62 | OnTop 63 | 64 | Small 65 | arrow-64.png 66 | 67 | 68 | Year 69 | 2014 70 | 71 | 72 | -------------------------------------------------------------------------------- /themes/pointer-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/themes/pointer-metal.png -------------------------------------------------------------------------------- /themes/random/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | Slice 7 | Description 8 | random choose a theme from others 9 | Year 10 | 2014 11 | 12 | 13 | -------------------------------------------------------------------------------- /tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/tools/Shell32.efi -------------------------------------------------------------------------------- /tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/tools/Shell64.efi -------------------------------------------------------------------------------- /tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/tools/Shell64U.efi -------------------------------------------------------------------------------- /tools/bdmesg-32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/tools/bdmesg-32.efi -------------------------------------------------------------------------------- /tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littlegtplr/Hackintosh-X230-macOS/433c0c88ef0816e582994864cc80397c3f9f94be/tools/bdmesg.efi --------------------------------------------------------------------------------